Searched refs:iRect (Results 1 - 6 of 6) sorted by relevance
/foundation/graphic/graphic_2d/rosen/modules/composer/hdi_backend/test/unittest/ |
H A D | hdilayerinfo_test.cpp | 175 GraphicIRect iRect = {
in HWTEST_F() local 182 inVisibles.emplace_back(iRect);
in HWTEST_F() 186 ASSERT_EQ(outVisibles[0].x, iRect.x);
in HWTEST_F() 187 ASSERT_EQ(outVisibles[0].y, iRect.y);
in HWTEST_F() 188 ASSERT_EQ(outVisibles[0].w, iRect.w);
in HWTEST_F() 189 ASSERT_EQ(outVisibles[0].h, iRect.h);
in HWTEST_F() 201 GraphicIRect iRect = {
in HWTEST_F() local 208 inDirtyRegions.emplace_back(iRect);
in HWTEST_F() 212 ASSERT_EQ(outDirtyRegions[0].x, iRect.x);
in HWTEST_F() 213 ASSERT_EQ(outDirtyRegions[0].y, iRect in HWTEST_F() 249 GraphicIRect iRect = { HWTEST_F() local 271 GraphicIRect iRect = { HWTEST_F() local [all...] |
H A D | hdioutput_test.cpp | 166 GraphicIRect iRect = {
in HWTEST_F() local 173 inDamages.emplace_back(iRect);
in HWTEST_F() 177 ASSERT_EQ(outDamages[0].x, iRect.x);
in HWTEST_F() 178 ASSERT_EQ(outDamages[0].y, iRect.y);
in HWTEST_F() 179 ASSERT_EQ(outDamages[0].w, iRect.w);
in HWTEST_F() 180 ASSERT_EQ(outDamages[0].h, iRect.h);
in HWTEST_F()
|
/foundation/graphic/graphic_utils_lite/frameworks/hals/ |
H A D | gfx_engines.cpp | 65 static void Convert2IRect(const Rect& rect, IRect& iRect) in Convert2IRect() argument 67 iRect.x = rect.GetLeft(); in Convert2IRect() 68 iRect.y = rect.GetTop(); in Convert2IRect() 69 iRect.w = rect.GetWidth(); in Convert2IRect() 70 iRect.h = rect.GetHeight(); in Convert2IRect()
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/ohos/backend/ |
H A D | rs_surface_frame_ohos_vulkan.cpp | 54 Drawing::RectI iRect = {rect.GetLeft(), rect.GetTop(), rect.GetRight(), rect.GetBottom()}; in SetDamageRegion() local 55 iRects.push_back(iRect); in SetDamageRegion()
|
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/engine_adapter/skia_adapter/ |
H A D | skia_canvas.cpp | 121 auto iRect = skCanvas_->getDeviceClipBounds(); in GetDeviceClipBounds() local 122 return RectI(iRect.fLeft, iRect.fTop, iRect.fRight, iRect.fBottom); in GetDeviceClipBounds() 131 auto iRect = skCanvas_->getRoundInDeviceClipBounds(); in GetRoundInDeviceClipBounds() local 132 return RectI(iRect.fLeft, iRect.fTop, iRect.fRight, iRect in GetRoundInDeviceClipBounds() [all...] |
H A D | skia_surface.cpp | 368 auto iRect = SkIRect::MakeLTRB(bounds.GetLeft(), bounds.GetTop(), bounds.GetRight(), bounds.GetBottom()); in GetImageSnapshot() local 369 auto skImage = skSurface_->makeImageSnapshot(iRect); in GetImageSnapshot()
|
Completed in 5 milliseconds