Home
last modified time | relevance | path

Searched refs:clipBox_ (Results 1 – 5 of 5) sorted by relevance

/foundation/graphic/graphic_utils_lite/frameworks/diagram/rasterizer/
Drasterizer_scanline_clip.cpp56 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/
Drender_base.h33 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
Drender_base.cpp28 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/
Drasterizer_scanline_clip.h105 : 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/
Dsvg_dom.h144 WeakPtr<RenderNode> clipBox_; variable