Home
last modified time | relevance | path

Searched refs:gameContentTypeSupported (Results 1 – 9 of 9) sorted by relevance

/aosp12/frameworks/native/libs/ui/
H A DDynamicDisplayInfo.cpp44 FlattenableHelpers::getFlattenedSize(gameContentTypeSupported); in getFlattenedSize()
57 RETURN_IF_ERROR(FlattenableHelpers::flatten(&buffer, &size, gameContentTypeSupported)); in flatten()
68 RETURN_IF_ERROR(FlattenableHelpers::unflatten(&buffer, &size, &gameContentTypeSupported)); in unflatten()
/aosp12/frameworks/base/services/core/java/com/android/server/display/
H A DDisplayDeviceInfo.java238 public boolean gameContentTypeSupported; field in DisplayDeviceInfo
391 || gameContentTypeSupported != other.gameContentTypeSupported in diff()
434 gameContentTypeSupported = other.gameContentTypeSupported; in copyFrom()
471 sb.append(", gameContentTypeSupported ").append(gameContentTypeSupported); in toString()
H A DLocalDisplayAdapter.java251 changed |= updateGameContentTypeSupport(dynamicInfo.gameContentTypeSupported); in updateDisplayPropertiesLocked()
568 mInfo.gameContentTypeSupported = mGameContentTypeSupported; in getDisplayDeviceInfoLocked()
H A DLogicalDisplay.java406 deviceInfo.allmSupported || deviceInfo.gameContentTypeSupported; in updateLocked()
/aosp12/frameworks/native/libs/ui/include/ui/
H A DDynamicDisplayInfo.h50 bool gameContentTypeSupported; member
/aosp12/frameworks/base/services/tests/mockingservicestests/src/com/android/server/display/
H A DLocalDisplayAdapterTest.java510 display.dynamicInfo.gameContentTypeSupported = true; in testAfterDisplayChange_GameContentTypeSupportIsUpdated()
522 assertThat(displayDeviceInfo.gameContentTypeSupported).isTrue(); in testAfterDisplayChange_GameContentTypeSupportIsUpdated()
525 display.dynamicInfo.gameContentTypeSupported = false; in testAfterDisplayChange_GameContentTypeSupportIsUpdated()
538 assertThat(displayDeviceInfo.gameContentTypeSupported).isFalse(); in testAfterDisplayChange_GameContentTypeSupportIsUpdated()
/aosp12/frameworks/base/core/jni/
H A Dandroid_view_SurfaceControl.cpp105 jfieldID gameContentTypeSupported; member
1218 env->SetBooleanField(object, gDynamicDisplayInfoClassInfo.gameContentTypeSupported, in nativeGetDynamicDisplayInfo()
1219 info.gameContentTypeSupported); in nativeGetDynamicDisplayInfo()
2072 gDynamicDisplayInfoClassInfo.gameContentTypeSupported = in register_android_view_SurfaceControl()
/aosp12/frameworks/base/core/java/android/view/
H A DSurfaceControl.java1858 public boolean gameContentTypeSupported; field in SurfaceControl.DynamicDisplayInfo
1869 + ", gameContentTypeSupported" + gameContentTypeSupported + "}"; in toString()
/aosp12/frameworks/native/services/surfaceflinger/
H A DSurfaceFlinger.cpp1081 info->gameContentTypeSupported = std::any_of(types.begin(), types.end(), [](auto type) { in getDynamicDisplayInfo()