Home
last modified time | relevance | path

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

/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/
DDisplayColorProfile.h63 ui::Dataspace* outDataspace, ui::ColorMode* outMode,
/frameworks/native/services/surfaceflinger/CompositionEngine/src/
DDisplayColorProfile.cpp347 Dataspace* outDataspace, ColorMode* outMode, in getBestColorMode() argument
352 *outMode = iter->second.colorMode; in getBestColorMode()
363 *outMode = ColorMode::NATIVE; in getBestColorMode()
DOutput.cpp1045 ui::ColorMode outMode; in pickColorProfile() local
1048 mDisplayColorProfile->getBestColorMode(bestDataSpace, intent, &outDataSpace, &outMode, in pickColorProfile()
1051 return ColorProfile{outMode, outDataSpace, outRenderIntent}; in pickColorProfile()
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/impl/
DDisplayColorProfile.h44 ui::Dataspace* outDataspace, ui::ColorMode* outMode,
/frameworks/native/libs/gui/
DSurfaceComposerClient.cpp2610 ui::DisplayMode outMode; in getDynamicDisplayInfoInternal() local
2611 outMode.id = mode.id; in getDynamicDisplayInfoInternal()
2612 outMode.resolution.width = mode.resolution.width; in getDynamicDisplayInfoInternal()
2613 outMode.resolution.height = mode.resolution.height; in getDynamicDisplayInfoInternal()
2614 outMode.xDpi = mode.xDpi; in getDynamicDisplayInfoInternal()
2615 outMode.yDpi = mode.yDpi; in getDynamicDisplayInfoInternal()
2616 outMode.peakRefreshRate = mode.peakRefreshRate; in getDynamicDisplayInfoInternal()
2617 outMode.vsyncRate = mode.vsyncRate; in getDynamicDisplayInfoInternal()
2618 outMode.appVsyncOffset = mode.appVsyncOffset; in getDynamicDisplayInfoInternal()
2619 outMode.sfVsyncOffset = mode.sfVsyncOffset; in getDynamicDisplayInfoInternal()
[all …]
/frameworks/native/services/surfaceflinger/
DSurfaceFlinger.cpp257 bool isAbove4k30(const ui::DisplayMode& outMode) { in isAbove4k30() argument
259 Fps refreshRate = Fps::fromValue(outMode.peakRefreshRate); in isAbove4k30()
260 return outMode.resolution.getWidth() >= FOUR_K_WIDTH && in isAbove4k30()
261 outMode.resolution.getHeight() >= FOUR_K_HEIGHT && refreshRate > 30_Hz; in isAbove4k30()
265 ui::DisplayMode& outMode) { in excludeDolbyVisionIf4k30Present() argument
266 if (isAbove4k30(outMode) && in excludeDolbyVisionIf4k30Present()
271 outMode.supportedHdrTypes.push_back(type); in excludeDolbyVisionIf4k30Present()
277 outMode.supportedHdrTypes.push_back(type); in excludeDolbyVisionIf4k30Present()
1163 ui::DisplayMode outMode; in getDynamicDisplayInfoInternal() local
1164 outMode.id = ftl::to_underlying(id); in getDynamicDisplayInfoInternal()
[all …]
DSurfaceFlinger.h1605 binder::Status getBootDisplayModeSupport(bool* outMode) override;
/frameworks/av/services/camera/libcameraservice/api2/
DCameraDeviceClient.h170 virtual binder::Status getGlobalAudioRestriction(/*out*/int32_t* outMode) override;
DCameraDeviceClient.cpp1784 binder::Status CameraDeviceClient::getGlobalAudioRestriction(/*out*/ int32_t* outMode) { in getGlobalAudioRestriction() argument
1789 if (outMode != nullptr) { in getGlobalAudioRestriction()
1790 *outMode = BasicClient::getServiceAudioRestriction(); in getGlobalAudioRestriction()