Home
last modified time | relevance | path

Searched refs:hdrFormat (Results 1 – 25 of 45) sorted by relevance

12

/ohos5.0/foundation/window/window_manager/dm/src/
H A Doh_display_manager.cpp648 if (displayInfo->hdrFormat == nullptr) { in NativeDisplayManager_SetHdrFormat()
656 DISPLAY_MANAGER_FREE_MEMORY(displayInfo->hdrFormat); in NativeDisplayManager_SetHdrFormat()
661 if (displayInfo->hdrFormat->hdrFormats == nullptr) { in NativeDisplayManager_SetHdrFormat()
663 DISPLAY_MANAGER_FREE_MEMORY(displayInfo->hdrFormat); in NativeDisplayManager_SetHdrFormat()
671 DISPLAY_MANAGER_FREE_MEMORY(displayInfo->hdrFormat); in NativeDisplayManager_SetHdrFormat()
676 for (const auto hdrFormat : hdrFormats) { in NativeDisplayManager_SetHdrFormat() local
682 displayInfo->hdrFormat->hdrFormats[hdrLoop] = in NativeDisplayManager_SetHdrFormat()
762 if (displayItem.hdrFormat != nullptr) { in NativeDisplayManager_DestroyDisplaysInfoInner()
922 if (displayInfo->hdrFormat != nullptr) { in OH_NativeDisplayManager_DestroyDisplay()
923 if (displayInfo->hdrFormat->hdrFormats != nullptr) { in OH_NativeDisplayManager_DestroyDisplay()
[all …]
H A Dscreen.cpp174 DMError Screen::GetScreenHDRFormat(ScreenHDRFormat& hdrFormat) const in GetScreenHDRFormat()
176 return SingletonContainer::Get<ScreenManagerAdapter>().GetScreenHDRFormat(GetId(), hdrFormat); in GetScreenHDRFormat()
H A Ddisplay_manager_adapter.cpp141 DMError ScreenManagerAdapter::GetScreenHDRFormat(ScreenId screenId, ScreenHDRFormat& hdrFormat) in GetScreenHDRFormat() argument
146 return displayManagerServiceProxy_->GetScreenHDRFormat(screenId, hdrFormat); in GetScreenHDRFormat()
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkui/
H A D_native_display_manager___display_info.md38 …_DisplayHdrFormat](_native_display_manager___display_hdr_format.md) \* [hdrFormat](#hdrformat) | 显…
100 ### hdrFormat subsection
103 NativeDisplayManager_DisplayHdrFormat* NativeDisplayManager_DisplayInfo::hdrFormat
/ohos5.0/foundation/window/window_manager/interfaces/kits/dmndk/dm/
H A Doh_display_info.h328 NativeDisplayManager_DisplayHdrFormat *hdrFormat; member
/ohos5.0/docs/en/application-dev/reference/apis-arkui/
H A D_native_display_manager___display_info.md38 …_DisplayHdrFormat](_native_display_manager___display_hdr_format.md) \* [hdrFormat](#hdrformat) | A…
100 ### hdrFormat subsection
103 NativeDisplayManager_DisplayHdrFormat* NativeDisplayManager_DisplayInfo::hdrFormat
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/screen_manager/
H A Drs_screen_info.h52 ScreenHDRFormat hdrFormat = ScreenHDRFormat::NOT_SUPPORT_HDR; member
/ohos5.0/foundation/window/window_manager/interfaces/innerkits/dm/
H A Dscreen.h268 DMError GetScreenHDRFormat(ScreenHDRFormat& hdrFormat) const;
/ohos5.0/foundation/window/window_manager/window_scene/session_manager/src/zidl/
H A Dscreen_session_manager_stub.cpp437 [](Parcel& parcel, const ScreenHDRFormat& hdrFormat) { in OnRemoteRequest() argument
438 return parcel.WriteUint32(static_cast<uint32_t>(hdrFormat)); in OnRemoteRequest()
445 ScreenHDRFormat hdrFormat; in OnRemoteRequest() local
446 DMError ret = GetScreenHDRFormat(screenId, hdrFormat); in OnRemoteRequest()
451 reply.WriteInt32(static_cast<uint32_t>(hdrFormat)); in OnRemoteRequest()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service/core/screen_manager/
H A Drs_screen_manager.h188 virtual int32_t GetScreenHDRFormat(ScreenId id, ScreenHDRFormat& hdrFormat) const = 0;
400 int32_t GetScreenHDRFormat(ScreenId id, ScreenHDRFormat& hdrFormat) const override;
503 int32_t GetScreenHDRFormatLocked(ScreenId id, ScreenHDRFormat& hdrFormat) const;
H A Drs_screen.h104 virtual int32_t GetScreenHDRFormat(ScreenHDRFormat& hdrFormat) const = 0;
195 int32_t GetScreenHDRFormat(ScreenHDRFormat& hdrFormat) const override;
H A Drs_screen.cpp954 int32_t RSScreen::GetScreenHDRFormat(ScreenHDRFormat& hdrFormat) const in GetScreenHDRFormat()
957 hdrFormat = supportedVirtualHDRFormats_[currentVirtualHDRFormatIdx_]; in GetScreenHDRFormat()
963 hdrFormat = supportedPhysicalHDRFormats_[currentPhysicalHDRFormatIdx_]; in GetScreenHDRFormat()
H A Drs_screen_manager.cpp1558 screen->GetScreenHDRFormat(info.hdrFormat); in QueryScreenInfoLocked()
1946 int32_t RSScreenManager::GetScreenHDRFormatLocked(ScreenId id, ScreenHDRFormat& hdrFormat) const in GetScreenHDRFormatLocked()
1953 return screensIt->second->GetScreenHDRFormat(hdrFormat); in GetScreenHDRFormatLocked()
2094 int32_t RSScreenManager::GetScreenHDRFormat(ScreenId id, ScreenHDRFormat& hdrFormat) const in GetScreenHDRFormat()
2097 return GetScreenHDRFormatLocked(id, hdrFormat); in GetScreenHDRFormat()
/ohos5.0/foundation/window/window_manager/test/common/mock/
H A Dmock_display_manager_adapter.h90 MOCK_METHOD2(GetScreenHDRFormat, DMError(ScreenId screenId, ScreenHDRFormat& hdrFormat));
/ohos5.0/foundation/window/window_manager/dm/test/unittest/
H A Dscreen_test.cpp380 ScreenHDRFormat hdrFormat = ScreenHDRFormat{0};
381 auto res = screen_->GetScreenHDRFormat(hdrFormat);
H A Ddisplay_manager_adapter_test.cpp348 ScreenHDRFormat hdrFormat = ScreenHDRFormat{NOT_SUPPORT_HDR};
349 DMError err = SingletonContainer::Get<ScreenManagerAdapter>().GetScreenHDRFormat(0, hdrFormat);
/ohos5.0/foundation/window/window_manager/dmserver/include/
H A Ddisplay_manager_proxy.h61 DMError GetScreenHDRFormat(ScreenId screenId, ScreenHDRFormat& hdrFormat) override;
/ohos5.0/foundation/window/window_manager/window_scene/session_manager/src/
H A Dscreen_session_dumper.cpp389 ScreenHDRFormat hdrFormat; in DumpRsInfoById01() local
390 ret = screenSession->GetScreenHDRFormat(hdrFormat); in DumpRsInfoById01()
393 << static_cast<int32_t>(hdrFormat) << std::endl; in DumpRsInfoById01()
/ohos5.0/foundation/window/window_manager/interfaces/kits/napi/display_runtime/
H A Djs_display.cpp599 for (const auto hdrFormat : hdrFormats) { in CreateJsHDRFormatArray() local
600 ScreenHDRFormat hdrFormatValue = static_cast<ScreenHDRFormat>(hdrFormat); in CreateJsHDRFormatArray()
602 WLOGFE("Get HDR format name %{public}u, but not in api type", hdrFormat); in CreateJsHDRFormatArray()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/transaction/
H A Drs_interfaces.cpp477 int32_t RSInterfaces::GetScreenHDRFormat(ScreenId id, ScreenHDRFormat& hdrFormat) in GetScreenHDRFormat() argument
479 return renderServiceClient_->GetScreenHDRFormat(id, hdrFormat); in GetScreenHDRFormat()
H A Drs_interfaces.h185 int32_t GetScreenHDRFormat(ScreenId id, ScreenHDRFormat& hdrFormat);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service/core/pipeline/
H A Drs_render_service_connection.cpp1457 int32_t RSRenderServiceConnection::GetScreenHDRFormat(ScreenId id, ScreenHDRFormat& hdrFormat) in GetScreenHDRFormat() argument
1465 [=, &hdrFormat]() { return screenManager_->GetScreenHDRFormat(id, hdrFormat); }).get(); in GetScreenHDRFormat()
1468 [=, &hdrFormat]() { return screenManager_->GetScreenHDRFormat(id, hdrFormat); }).get(); in GetScreenHDRFormat()
/ohos5.0/foundation/window/window_manager/dmserver/src/
H A Ddisplay_manager_proxy.cpp577 [](Parcel& parcel, ScreenHDRFormat& hdrFormat) { in GetSupportedHDRFormats() argument
580 hdrFormat = static_cast<ScreenHDRFormat>(value); in GetSupportedHDRFormats()
587 DMError DisplayManagerProxy::GetScreenHDRFormat(ScreenId screenId, ScreenHDRFormat& hdrFormat) in GetScreenHDRFormat() argument
615 hdrFormat = static_cast<ScreenHDRFormat>(reply.ReadUint32()); in GetScreenHDRFormat()
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/platform/ohos/
H A Drs_render_service_connection_proxy_test.cpp640 ScreenHDRFormat hdrFormat = IMAGE_HDR_ISO_DUAL; variable
641 ASSERT_EQ(proxy->GetScreenHDRFormat(id, hdrFormat), 2);
/ohos5.0/foundation/window/window_manager/dm/include/
H A Ddisplay_manager_adapter.h151 virtual DMError GetScreenHDRFormat(ScreenId screenId, ScreenHDRFormat& hdrFormat);

12