Home
last modified time | relevance | path

Searched refs:zorder (Results 1 – 25 of 51) sorted by relevance

123

/ohos5.0/foundation/window/window_manager/wmserver/test/unittest/
H A Dwindow_zorder_policy_test.cpp56 int32_t zorder = zorderPolicy->GetWindowPriority(WindowType::WINDOW_TYPE_DESKTOP); variable
57 ASSERT_EQ(zorder, 1);
68 int32_t zorder = zorderPolicy->GetWindowPriority(static_cast<WindowType>(3000)); variable
69 ASSERT_EQ(zorder, 1);
/ohos5.0/drivers/peripheral/display/hal/default_standard/src/display_device/core/
H A Dhdi_display.cpp65 int32_t HdiDisplay::SetLayerZorder(uint32_t layerId, uint32_t zorder) in SetLayerZorder() argument
67 …DISPLAY_LOGD("layerId:%{public}d zorder:%{public}d size:%{public}zu", layerId, zorder, mLayers.siz… in SetLayerZorder()
72 if (layer->GetZorder() == zorder) { in SetLayerZorder()
73 DISPLAY_LOGD("zorder no change layerId %{public}d, zorder %{public}d", layerId, zorder); in SetLayerZorder()
84 layer->SetLayerZorder(zorder); in SetLayerZorder()
H A Dhdi_layer.cpp107 void HdiLayer::SetLayerZorder(uint32_t zorder) in SetLayerZorder() argument
109 DISPLAY_LOGD("id : %{public}d zorder : %{public}d ", mId, zorder); in SetLayerZorder()
110 mZorder = zorder; in SetLayerZorder()
/ohos5.0/foundation/graphic/graphic_2d/rosen/samples/2d_graphics/
H A Drender_context_sample.cpp263 int32_t zorder = 0; in DrawBackgroundLayer() local
271 if (!FillBackGroundLayer(layer, zorder, dstRect)) { in DrawBackgroundLayer()
279 int32_t zorder = 1; in DrawDrawingLayer() local
288 if (!FillDrawingLayer(layer, 0, zorder, dstRect)) { in DrawDrawingLayer()
339 uint32_t zorder, GraphicIRect &dstRect) in FillDrawingLayer() argument
367 showLayer->SetZorder(zorder); in FillDrawingLayer()
389 uint32_t zorder, GraphicIRect &dstRect) in FillBackGroundLayer() argument
417 showLayer->SetZorder(zorder); in FillBackGroundLayer()
H A Ddrawing_sample_canvaskit0310.cpp74 bool FillBaseLayer(std::shared_ptr<HdiLayerInfo> &showLayer, uint32_t index, uint32_t zorder,
327 int32_t zorder = 1; in DrawBaseLayer() local
333 if (!FillBaseLayer(layerVec[0], 0, zorder, dstRect)) { in DrawBaseLayer()
338 zorder = 0; in DrawBaseLayer()
343 if (!FillBaseLayer(layerVec[1], 1, zorder, dstRect)) { in DrawBaseLayer()
348 zorder = 1; in DrawBaseLayer()
353 if (!FillBaseLayer(layerVec[2], 2, zorder, dstRect)) { in DrawBaseLayer()
361 uint32_t zorder, GraphicIRect &dstRect) in FillBaseLayer() argument
391 showLayer->SetZorder(zorder); in FillBaseLayer()
H A Drender_context_sample.h79 uint32_t zorder, GraphicIRect &dstRect);
80 …bool FillBackGroundLayer(std::shared_ptr<HdiLayerInfo> &showLayer, uint32_t zorder, GraphicIRect &…
/ohos5.0/drivers/peripheral/display/composer/vdi_base/src/
H A Dhdi_display.cpp65 int32_t HdiDisplay::SetLayerZorder(uint32_t layerId, uint32_t zorder) in SetLayerZorder() argument
72 if (layer->GetZorder() == zorder) { in SetLayerZorder()
73 DISPLAY_LOGD("zorder no change layerId %{public}d, zorder %{public}d", layerId, zorder); in SetLayerZorder()
84 layer->SetLayerZorder(zorder); in SetLayerZorder()
H A Dhdi_layer.cpp118 void HdiLayer::SetLayerZorder(uint32_t zorder) in SetLayerZorder() argument
120 DISPLAY_LOGD("id : %{public}d zorder : %{public}d ", mId, zorder); in SetLayerZorder()
121 mZorder = zorder; in SetLayerZorder()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service/core/pipeline/
H A Drs_uni_hwc_prevalidate_util.cpp96 bool RSUniHwcPrevalidateUtil::CreateSurfaceNodeLayerInfo(uint32_t zorder, in CreateSurfaceNodeLayerInfo() argument
107 info.zOrder = zorder; in CreateSurfaceNodeLayerInfo()
128 zorder, info.usage, info.format, info.transform, fps); in CreateSurfaceNodeLayerInfo()
145 bool RSUniHwcPrevalidateUtil::CreateDisplayNodeLayerInfo(uint32_t zorder, in CreateDisplayNodeLayerInfo() argument
164 info.zOrder = zorder; in CreateDisplayNodeLayerInfo()
175 zorder, info.usage, info.format, info.transform, fps); in CreateDisplayNodeLayerInfo()
H A Drs_uni_hwc_prevalidate_util.h72 bool CreateSurfaceNodeLayerInfo(uint32_t zorder,
74 bool CreateDisplayNodeLayerInfo(uint32_t zorder,
/ohos5.0/drivers/peripheral/display/composer/test/moduletest/
H A Dhdi_device_test.cpp232 static std::shared_ptr<HdiTestLayer> CreateTestLayer(LayerSettings setting, uint32_t zorder) in CreateTestLayer() argument
258 layer->SetZorder(zorder); in CreateTestLayer()
430 TEST_F(DeviceTest, zorder) in TEST_F() argument
456 settings[i].zorder = zorderList[i]; in TEST_F()
461 [=](const auto& l, auto const& r) { return l.zorder < r.zorder; }); in TEST_F()
/ohos5.0/drivers/peripheral/display/hal/default_standard/src/display_layer_video/
H A Ddisplay_layer_video.cpp82 static int32_t SetLayerZorder(uint32_t devId, uint32_t layerId, uint32_t zorder) in SetLayerZorder() argument
85 g_layerService->SetLayerZorder(devId, layerId, zorder); in SetLayerZorder()
/ohos5.0/drivers/peripheral/display/composer/test/common/
H A Dhdi_test_layer.cpp248 void HdiTestLayer::SetZorder(uint32_t zorder) in SetZorder() argument
250 DISPLAY_TEST_LOGD("the zorder is %{public}u", zorder); in SetZorder()
251 zorder_ = zorder; in SetZorder()
H A Ddisplay_test_utils.h61 uint32_t zorder = 0; member
H A Dhdi_test_layer.h82 void SetZorder(uint32_t zorder);
/ohos5.0/foundation/graphic/graphic_2d/rosen/samples/2d_graphics/test/src/
H A Dlayer_context.cpp26 LayerContext::LayerContext(GraphicIRect dst, GraphicIRect src, uint32_t zorder, LayerType layerType) in LayerContext() argument
27 : dst_(dst), src_(src), zorder_(zorder), layerType_(layerType) in LayerContext()
/ohos5.0/drivers/peripheral/display/hdi_service/device/src/server/
H A Ddisplay_device_service.cpp228 int32_t DisplayDeviceService::SetLayerZorder(uint32_t devId, uint32_t layerId, uint32_t zorder) in SetLayerZorder() argument
230 return displayLayer_->SetLayerZorder(devId, layerId, zorder); in SetLayerZorder()
233 int32_t DisplayDeviceService::GetLayerZorder(uint32_t devId, uint32_t layerId, uint32_t &zorder) in GetLayerZorder() argument
235 return displayLayer_->GetLayerZorder(devId, layerId, &zorder); in GetLayerZorder()
/ohos5.0/drivers/peripheral/display/interfaces/include/
H A Ddisplay_layer.h234 int32_t (*SetLayerZorder)(uint32_t devId, uint32_t layerId, uint32_t zorder);
252 int32_t (*GetLayerZorder)(uint32_t devId, uint32_t layerId, uint32_t *zorder);
/ohos5.0/foundation/graphic/graphic_2d/rosen/samples/2d_graphics/test/include/
H A Dlayer_context.h34 LayerContext(GraphicIRect dst, GraphicIRect src, uint32_t zorder, LayerType layerType);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/composer/hdi_backend/test/fuzztest/hdidevice_fuzzer/
H A Dhdidevice_fuzzer.cpp101 uint32_t zorder = GetData<uint32_t>(); in HdiDeviceFuzzTest2() local
123 device->SetLayerZorder(screenId, layerId, zorder); in HdiDeviceFuzzTest2()
/ohos5.0/foundation/multimodalinput/input/service/
H A Dhisysevent.yaml193 __BASE: {type: BEHAVIOR, level: MINOR, tag: PowerStats, desc: zorder window change}
194 OLD_ZORDER_FIRST_WINDOWID: {type: INT32, desc: old zorder first windowid}
195 NEW_ZORDER_FIRST_WINDOWID: {type: INT32, desc: new zorder first windowid}
196 OLD_ZORDER_FIRST_WINDOWPID: {type: INT32, desc: old zorder first windowpid}
197 NEW_ZORDER_FIRST_WINDOWPID: {type: INT32, desc: new zorder first windowpid}
/ohos5.0/drivers/peripheral/display/hdi_service/device/include/interfaces/
H A Didisplay_device.h80 virtual int32_t SetLayerZorder(uint32_t devId, uint32_t layerId, uint32_t zorder) = 0;
81 virtual int32_t GetLayerZorder(uint32_t devId, uint32_t layerId, uint32_t &zorder) = 0;
/ohos5.0/drivers/peripheral/display/hdi_service/device/include/server/
H A Ddisplay_device_service.h70 int32_t SetLayerZorder(uint32_t devId, uint32_t layerId, uint32_t zorder) override;
71 int32_t GetLayerZorder(uint32_t devId, uint32_t layerId, uint32_t &zorder) override;
/ohos5.0/foundation/graphic/graphic_2d/rosen/samples/composer/
H A Dlayer_context.cpp33 LayerContext::LayerContext(GraphicIRect dst, GraphicIRect src, uint32_t zorder, LayerType layerType) in LayerContext() argument
34 …: dst_(dst), src_(src), zorder_(zorder), cSurface_(IConsumerSurface::Create()), layerType_(layerTy… in LayerContext()
H A Dlayer_context.h40 LayerContext(GraphicIRect dst, GraphicIRect src, uint32_t zorder, LayerType layerType);

123