/kernel/linux/linux-6.6/drivers/gpu/drm/hyperv/ |
H A D | hyperv_drm.h | 50 int hyperv_update_dirt(struct hv_device *hdev, struct drm_rect *rect);
|
/third_party/cups-filters/filter/pdftopdf/ |
H A D | qpdf_pdftopdf.h | 10 QPDFObjectHandle getRectAsBox(const PageRect &rect);
|
/third_party/mesa3d/src/freedreno/vulkan/ |
H A D | tu_clear_blit.h | 32 const VkRect2D *rect);
|
/third_party/mesa3d/src/gallium/drivers/lima/ |
H A D | lima_util.h | 60 void lima_damage_rect_union(struct pipe_scissor_state *rect,
|
/third_party/skia/src/gpu/v1/ |
H A D | StencilMaskHelper.h | 47 // Draw a single rect into the stencil clip using the specified op 48 void drawRect(const SkRect& rect, const SkMatrix& matrix, SkRegion::Op, GrAA);
|
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/ |
H A D | VkFramebuffer.hpp | 32 void clearAttachment(const RenderPass *renderPass, uint32_t subpassIndex, const VkClearAttachment &attachment, const VkClearRect &rect);
|
/third_party/skia/experimental/sktext/editor/ |
H A D | Selection.h | 28 void select(TextRange range, SkRect rect);
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/layout/ |
H A D | layout_wrapper.cpp | 173 RectF rect {}; in GetFrameRectWithSafeArea() 175 CHECK_NULL_RETURN(host, rect); in GetFrameRectWithSafeArea() 180 CHECK_NULL_RETURN(layoutProp, rect); in GetFrameRectWithSafeArea() 182 CHECK_NULL_RETURN(layoutConstraint.has_value(), rect); in GetFrameRectWithSafeArea() 186 rect = in GetFrameRectWithSafeArea() 188 return rect; in GetFrameRectWithSafeArea() 376 // check if current rect can overlap with four parent safeAreaPaddings in ParseSafeAreaPaddingSides() 449 // after expanding based on parent safeAreaPadding, adjust rect to parent's coordinate in GetAccumulatedSafeAreaExpandHelper()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/property/ |
H A D | accessibility_property.cpp | 181 auto rect = renderContext->GetPaintRectWithoutTransform(); in CreateNodeSearchInfo() local 184 bool hitSelf = rect.IsInnerRegion(selfPoint); in CreateNodeSearchInfo() 186 nodeInfo->Put("rect", rect.ToString().c_str()); in CreateNodeSearchInfo() 263 auto rect = renderContext->GetPaintRectWithoutTransform(); in HoverTestRecursive() local 266 bool hitSelf = rect.IsInnerRegion(selfPoint); in HoverTestRecursive() 277 PointF noOffsetPoint = selfPoint - rect.GetOffset(); in HoverTestRecursive()
|
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/property/ |
H A D | rs_properties_test2.cpp | 48 Vector4f rect{1.f, 1.f, 1.f, 1.f}; in HWTEST_F() 50 properties.SetBgImageInnerRect(rect); in HWTEST_F() 51 EXPECT_EQ(properties.GetBgImageInnerRect(), rect); in HWTEST_F() 53 properties.SetBgImageInnerRect(rect); in HWTEST_F() 609 RectT<float> rect(1.f, 1.f, 1.f, 1.f); in HWTEST_F() 610 RRect clipRRect(rect, 1.f, 1.f); in HWTEST_F()
|
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service/unittest/drawable/ |
H A D | rs_render_node_drawable_test.cpp | 778 Drawing::RectI rect; in HWTEST_F() local 780 drawable->filterInfoVec_.emplace_back(RSRenderNodeDrawableAdapter::FilterNodeInfo(0, matrix, { rect })); in HWTEST_F() 820 Drawing::RectI rect; in HWTEST_F() local 823 RSRenderNodeDrawableAdapter::FilterNodeInfo(0, matrix, { rect }) in HWTEST_F() 849 Drawing::RectI rect; in HWTEST_F() local 852 RSRenderNodeDrawableAdapter::FilterNodeInfo(0, matrix, { rect }) in HWTEST_F()
|
/foundation/graphic/graphic_2d/rosen/modules/render_service/core/drawable/ |
H A D | rs_render_node_drawable.cpp | 214 for (auto& rect: item.rectVec_) { in TraverseSubTreeAndDrawFilterWithClip() 216 region.SetRect(rect); in TraverseSubTreeAndDrawFilterWithClip() 398 for (auto rect : iter->rectVec_) { in IsIntersectedWithFilter() 399 if (rect.Intersect(dstRect)) { in IsIntersectedWithFilter() 408 void RSRenderNodeDrawable::UpdateCacheInfoForDfx(Drawing::Canvas& canvas, const Drawing::Rect& rect, NodeId id) in UpdateCacheInfoForDfx() argument 414 canvas.GetTotalMatrix().MapRect(dst, rect); in UpdateCacheInfoForDfx()
|
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/display/dc/ |
H A D | dc.h | 830 struct rect src_rect; 831 struct rect dst_rect; 832 struct rect clip_rect; 903 struct rect src_rect; 904 struct rect dst_rect; 905 struct rect clip_rect;
|
/kernel/linux/linux-5.10/drivers/video/fbdev/ |
H A D | xen-fbfront.c | 245 static void xenfb_fillrect(struct fb_info *p, const struct fb_fillrect *rect) in xenfb_fillrect() argument 249 sys_fillrect(p, rect); in xenfb_fillrect() 250 xenfb_refresh(info, rect->dx, rect->dy, rect->width, rect->height); in xenfb_fillrect()
|
/kernel/linux/linux-5.10/drivers/gpu/drm/vmwgfx/ |
H A D | vmwgfx_fb.c | 368 static void vmw_fb_fillrect(struct fb_info *info, const struct fb_fillrect *rect) in vmw_fb_fillrect() argument 370 cfb_fillrect(info, rect); in vmw_fb_fillrect() 371 vmw_fb_dirty_mark(info->par, rect->dx, rect->dy, in vmw_fb_fillrect() 372 rect->width, rect->height); in vmw_fb_fillrect()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/ |
H A D | Blit9.cpp | 170 RECT rect; in getSurfaceRect() local 171 rect.left = 0; in getSurfaceRect() 172 rect.top = 0; in getSurfaceRect() 173 rect.right = desc.Width; in getSurfaceRect() 174 rect.bottom = desc.Height; in getSurfaceRect() 176 return rect; in getSurfaceRect()
|
H A D | StateManager9.cpp | 299 // If scissor is enabled, we have to set the scissor rect in syncState() 553 RECT rect; in setScissorRect() 554 rect.left = gl::clamp(scissor.x, 0, static_cast<int>(mRenderTargetBounds.width)); in setScissorRect() 555 rect.top = gl::clamp(scissor.y, 0, static_cast<int>(mRenderTargetBounds.height)); in setScissorRect() 556 rect.right = in setScissorRect() 558 rect.bottom = in setScissorRect() 560 mRenderer9->getDevice()->SetScissorRect(&rect); in setScissorRect()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/container_modal/ |
H A D | container_modal_pattern.h | 161 void GetWindowPaintRectWithoutMeasureAndLayout(RectInt& rect);
162 void GetWindowPaintRectWithoutMeasureAndLayout(Rect& rect, bool isContainerModal);
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/ |
H A D | js_text_editable_controller.cpp | 137 JSRef<JSVal> rect = JSRef<JSObject>::Cast(rectObj); in GetTextContentRect() local 138 info.SetReturnValue(rect); in GetTextContentRect()
|
/foundation/arkui/ace_engine/adapter/ohos/entrance/ |
H A D | ace_ability.h | 53 void OnSizeChange(OHOS::Rosen::Rect rect, OHOS::Rosen::WindowSizeChangeReason reason, 97 void OnSizeChange(const OHOS::Rosen::Rect& rect, OHOS::Rosen::WindowSizeChangeReason reason,
|
/foundation/arkui/ace_engine/interfaces/native/node/ |
H A D | dialog_model.cpp | 105 ArkUIRect rect = { maskRect->x, maskRect->y, maskRect->width, maskRect->height }; in SetMask() local 106 return impl->getDialogAPI()->setMask(handle->controller, maskColor, &rect); in SetMask()
|
/foundation/arkui/ui_lite/test/unittest/common/ |
H A D | hardware_acceleration_unit_test.cpp | 115 config.rect = rootView->GetRect(); in CreateDefaultWindow() 116 config.rect.SetPosition(x, y); in CreateDefaultWindow()
|
/foundation/arkui/ui_lite/test/unittest/dfx/ |
H A D | view_bounds_unit_test.cpp | 50 config.rect = rootView->GetRect(); in CreateDefaultWindow() 51 config.rect.SetPosition(x, y); in CreateDefaultWindow()
|
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/fuzztest/rsbasecommon_fuzzer/ |
H A D | rsbasecommon_fuzzer.cpp | 131 RectF rect; in RSObjAbsGeometryFuzzTest() local 137 (void)rsobjabsgeometry.MapAbsRect(rect); in RSObjAbsGeometryFuzzTest()
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/test/unittest/animation/ |
H A D | rs_render_animation_debug_trace_test.cpp | 157 RRect rect; in HWTEST_F() local 158 auto invalidProperty = std::make_shared<RSRenderAnimatableProperty<RRect>>(rect); in HWTEST_F()
|