Home
last modified time | relevance | path

Searched refs:overlayProperties (Results 1 – 4 of 4) sorted by relevance

/aosp14/frameworks/base/core/jni/
H A Dandroid_hardware_OverlayProperties.cpp43 static void destroyOverlayProperties(gui::OverlayProperties* overlayProperties) { in destroyOverlayProperties() argument
44 delete overlayProperties; in destroyOverlayProperties()
99 gui::OverlayProperties* overlayProperties = in android_hardware_OverlayProperties_write() local
101 if (overlayProperties != nullptr) { in android_hardware_OverlayProperties_write()
102 overlayProperties->writeToParcel(parcel); in android_hardware_OverlayProperties_write()
112 gui::OverlayProperties* overlayProperties = new gui::OverlayProperties; in android_hardware_OverlayProperties_read() local
113 if (overlayProperties->readFromParcel(parcel) != NO_ERROR) { in android_hardware_OverlayProperties_read()
114 delete overlayProperties; in android_hardware_OverlayProperties_read()
117 return reinterpret_cast<jlong>(overlayProperties); in android_hardware_OverlayProperties_read()
127 JNIEnv* env, gui::OverlayProperties* overlayProperties) { in android_hardware_OverlayProperties_convertToJavaObject() argument
[all …]
H A Dandroid_view_SurfaceControl.cpp1451 gui::OverlayProperties* overlayProperties = new gui::OverlayProperties; in nativeGetOverlaySupport() local
1452 if (SurfaceComposerClient::getOverlaySupport(overlayProperties) != NO_ERROR) { in nativeGetOverlaySupport()
1453 delete overlayProperties; in nativeGetOverlaySupport()
1456 return android_hardware_OverlayProperties_convertToJavaObject(env, overlayProperties); in nativeGetOverlaySupport()
/aosp14/frameworks/base/core/jni/include/android_runtime/
H A Dandroid_hardware_OverlayProperties.h27 JNIEnv* env, gui::OverlayProperties* overlayProperties);
/aosp14/frameworks/base/graphics/java/android/graphics/
H A DHardwareRenderer.java1392 final OverlayProperties overlayProperties = defaultDisplay.getOverlaySupport(); in initDisplayInfo() local
1393 boolean supportFp16ForHdr = overlayProperties != null in initDisplayInfo()
1394 ? overlayProperties.supportFp16ForHdr() : false; in initDisplayInfo()
1395 boolean supportMixedColorSpaces = overlayProperties != null in initDisplayInfo()
1396 ? overlayProperties.supportMixedColorSpaces() : false; in initDisplayInfo()