Searched refs:clipBox_ (Results 1 – 5 of 5) sorted by relevance
/foundation/graphic/graphic_utils_lite/frameworks/diagram/rasterizer/ |
D | rasterizer_scanline_clip.cpp | 56 tx1 = x1 + RasterDepictInt::MultDiv(clipBox_.GetTop() - y1, x2 - x1, y2 - y1); in LineClipY() 57 ty1 = clipBox_.GetTop(); in LineClipY() 64 tx1 = x1 + RasterDepictInt::MultDiv(clipBox_.GetBottom() - y1, x2 - x1, y2 - y1); in LineClipY() 65 ty1 = clipBox_.GetBottom(); in LineClipY() 71 tx2 = x1 + RasterDepictInt::MultDiv(clipBox_.GetTop() - y1, x2 - x1, y2 - y1); in LineClipY() 72 ty2 = clipBox_.GetTop(); in LineClipY() 78 tx2 = x1 + RasterDepictInt::MultDiv(clipBox_.GetBottom() - y1, x2 - x1, y2 - y1); in LineClipY() 79 ty2 = clipBox_.GetBottom(); in LineClipY() 108 uint32_t cFlagsLineToPoint = ClippingFlags(x2, y2, clipBox_); in LineTo() 135 … yPilotOne = y1 + RasterDepictInt::MultDiv(clipBox_.GetRight() - x1, y2 - y1, x2 - x1); in LineTo() [all …]
|
/foundation/arkui/ui_lite/frameworks/render/ |
D | render_base.h | 33 RenderBase() : pixfmtType_(nullptr), clipBox_(1, 1, 0, 0) {} in RenderBase() 36 : pixfmtType_(&ren), clipBox_(0, 0, ren.GetWidth() - 1, ren.GetHeight() - 1) {} in RenderBase() 93 return x >= clipBox_.GetLeft() && y >= clipBox_.GetTop() && in Inbox() 94 x <= clipBox_.GetRight() && y <= clipBox_.GetBottom(); in Inbox() 103 return clipBox_; in GetClipBox() 111 return clipBox_.GetLeft(); in GetXMin() 119 return clipBox_.GetTop(); in GetYMin() 127 return clipBox_.GetRight(); in GetXMax() 135 return clipBox_.GetBottom(); in GetYMax() 199 Rect32 clipBox_; variable
|
D | render_base.cpp | 28 clipBox_.SetRect(0, 0, ren.GetWidth() - 1, ren.GetHeight() - 1); in Attach() 36 clipBox_.SetRect(cb.GetLeft(), cb.GetTop(), cb.GetRight(), cb.GetBottom()); in ClipBox() 54 clipBox_.SetRect(x1, y1, x2, y2); in ClipBoxNaked()
|
/foundation/graphic/graphic_utils_lite/interfaces/kits/gfx_utils/diagram/rasterizer/ |
D | rasterizer_scanline_clip.h | 105 : clipBox_(0, 0, 0, 0), in RasterizerScanlineClip() 123 clipBox_ = Rect32(left, top, right, bottom); in ClipBox() 124 clipBox_.Normalize(); in ClipBox() 139 clippingFlags_ = ClippingFlags(x1, y1, clipBox_); in MoveTo() 174 Rect32 clipBox_; variable
|
/foundation/arkui/ace_engine/frameworks/core/components/svg/parse/ |
D | svg_dom.h | 144 WeakPtr<RenderNode> clipBox_; variable
|