Home
last modified time | relevance | path

Searched refs:SetVirtualScreenResolution (Results 1 – 20 of 20) sorted by relevance

/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service/core/screen_manager/
H A Drs_screen_manager.h102 virtual int32_t SetVirtualScreenResolution(ScreenId id, uint32_t width, uint32_t height) = 0;
314 int32_t SetVirtualScreenResolution(ScreenId id, uint32_t width, uint32_t height) override;
H A Drs_screen_manager.cpp1288 int32_t RSScreenManager::SetVirtualScreenResolution(ScreenId id, uint32_t width, uint32_t height) in SetVirtualScreenResolution() function in OHOS::Rosen::impl::RSScreenManager
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/transaction/
H A Drs_interfaces.cpp304 int32_t RSInterfaces::SetVirtualScreenResolution(ScreenId id, uint32_t width, uint32_t height) in SetVirtualScreenResolution() function in OHOS::Rosen::RSInterfaces
306 return renderServiceClient_->SetVirtualScreenResolution(id, width, height); in SetVirtualScreenResolution()
H A Drs_interfaces.h109 int32_t SetVirtualScreenResolution(ScreenId id, uint32_t width, uint32_t height);
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/platform/ohos/
H A Drs_render_service_connection_proxy_test.cpp370 HWTEST_F(RSRenderServiceConnectionProxyTest, SetVirtualScreenResolution, TestSize.Level1)
375 ASSERT_EQ(proxy->SetVirtualScreenResolution(id, width, height), 2);
H A Drs_render_service_client_test.cpp510 rsClient->SetVirtualScreenResolution(virtualScreenId, newWidth, newHeight);
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/fuzztest/rsrenderserviceconnectionproxy_fuzzer/
H A Drsrenderserviceconnectionproxy_fuzzer.cpp157 rsRenderServiceConnectionProxy.SetVirtualScreenResolution(id1, width, height); in DoSomethingInterestingWithMyAPI()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/platform/ohos/
H A Drs_irender_service_connection.h136 virtual int32_t SetVirtualScreenResolution(ScreenId id, uint32_t width, uint32_t height) = 0;
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/darwin/
H A Drs_render_service_client.cpp217 int32_t RSRenderServiceClient::SetVirtualScreenResolution(ScreenId id, uint32_t width, uint32_t hei… in SetVirtualScreenResolution() function in OHOS::Rosen::RSRenderServiceClient
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/windows/
H A Drs_render_service_client.cpp217 int32_t RSRenderServiceClient::SetVirtualScreenResolution(ScreenId id, uint32_t width, uint32_t hei… in SetVirtualScreenResolution() function in OHOS::Rosen::RSRenderServiceClient
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service/unittest/screen_manager/
H A Drs_screen_manager_test.cpp292 …ASSERT_EQ(SUCCESS, static_cast<StatusCode>(screenManager->SetVirtualScreenResolution(id, width, he…
309 auto result = screenManager->SetVirtualScreenResolution(screenId, width, height);
339 …ASSERT_EQ(SUCCESS, static_cast<StatusCode>(screenManager->SetVirtualScreenResolution(id, width, he…
360 auto result = screenManager->SetVirtualScreenResolution(screenId, width, height);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/ohos/
H A Drs_render_service_connection_proxy.h113 int32_t SetVirtualScreenResolution(ScreenId id, uint32_t width, uint32_t height) override;
H A Drs_render_service_client.cpp602 int32_t RSRenderServiceClient::SetVirtualScreenResolution(ScreenId id, uint32_t width, uint32_t hei… in SetVirtualScreenResolution() function in OHOS::Rosen::RSRenderServiceClient
610 return renderService->SetVirtualScreenResolution(id, width, height); in SetVirtualScreenResolution()
H A Drs_render_service_connection_proxy.cpp962 int32_t RSRenderServiceConnectionProxy::SetVirtualScreenResolution(ScreenId id, uint32_t width, uin… in SetVirtualScreenResolution() function in OHOS::Rosen::RSRenderServiceConnectionProxy
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service/core/pipeline/
H A Drs_render_service_connection.h139 int32_t SetVirtualScreenResolution(ScreenId id, uint32_t width, uint32_t height) override;
H A Drs_render_service_connection.cpp805 int32_t RSRenderServiceConnection::SetVirtualScreenResolution(ScreenId id, uint32_t width, uint32_t… in SetVirtualScreenResolution() function in OHOS::Rosen::RSRenderServiceConnection
813 [=]() { return screenManager_->SetVirtualScreenResolution(id, width, height); }).get(); in SetVirtualScreenResolution()
816 [=]() { return screenManager_->SetVirtualScreenResolution(id, width, height); }).get(); in SetVirtualScreenResolution()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/transaction/
H A Drs_render_service_client.h208 int32_t SetVirtualScreenResolution(ScreenId id, uint32_t width, uint32_t height);
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service/fuzztest/rsrenderserviceconnection_fuzzer/
H A Drsrenderserviceconnection_fuzzer.cpp323 rsConn->SetVirtualScreenResolution(id, SCREEN_WIDTH, SCREEN_HEIGHT); in DoSetVirtualScreenResolution()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_client/test/unittest/
H A Drs_interfaces_test.cpp162 rsInterfaces->SetVirtualScreenResolution(virtualScreenId, newWidth, newHeight);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service/core/transaction/
H A Drs_render_service_connection_stub.cpp729 int32_t status = SetVirtualScreenResolution(id, width, height); in OnRemoteRequest()