Lines Matching refs:gfxDstBuffer
28 void DrawArc::DrawImg(BufferInfo& gfxDstBuffer, in DrawImg() argument
47 image->DrawImage(gfxDstBuffer, cordsTmp, area, style, opaScale); in DrawImg()
51 void DrawArc::DrawVerLine(BufferInfo& gfxDstBuffer, in DrawVerLine() argument
62 DrawImg(gfxDstBuffer, imgPos, rect, mask, style, opaScale, image); in DrawVerLine()
64 … DrawUtils::GetInstance()->DrawColorArea(gfxDstBuffer, rect, mask, style.lineColor_, opaScale); in DrawVerLine()
68 void DrawArc::DrawHorLine(BufferInfo& gfxDstBuffer, in DrawHorLine() argument
79 DrawImg(gfxDstBuffer, imgPos, rect, mask, style, opaScale, image); in DrawHorLine()
82 …DrawUtils::GetInstance()->DrawPixel(gfxDstBuffer, begin.x, begin.y, mask, style.lineColor_, opaSca… in DrawHorLine()
85 … DrawUtils::GetInstance()->DrawColorArea(gfxDstBuffer, rect, mask, style.lineColor_, opaScale); in DrawHorLine()
128 void DrawArc::DrawCircleNoEndpoint(BufferInfo& gfxDstBuffer, in DrawCircleNoEndpoint() argument
135 DrawAxisLine(gfxDstBuffer, arcInfo, mask, style, opa); in DrawCircleNoEndpoint()
187 DrawLineAnti(gfxDstBuffer, arcInfo, mask, style, opa); in DrawCircleNoEndpoint()
190 …DrawLineWithDegree(gfxDstBuffer, arcInfo, -lineEnd_, -lineStart_, y_, mask, style, opa, ARC_QUADRA… in DrawCircleNoEndpoint()
192 …DrawLineWithDegree(gfxDstBuffer, arcInfo, -lineEnd_, -lineStart_, -y_, mask, style, opa, ARC_QUADR… in DrawCircleNoEndpoint()
194 …DrawLineWithDegree(gfxDstBuffer, arcInfo, lineStart_, lineEnd_, -y_, mask, style, opa, ARC_QUADRAN… in DrawCircleNoEndpoint()
196 …DrawLineWithDegree(gfxDstBuffer, arcInfo, lineStart_, lineEnd_, y_, mask, style, opa, ARC_QUADRANT… in DrawCircleNoEndpoint()
200 void DrawArc::DrawAxisLine(BufferInfo& gfxDstBuffer, in DrawAxisLine() argument
211 … DrawHorLine(gfxDstBuffer, arcInfo.center, arcInfo.imgPos, mask, 0, style, opa, arcInfo.imgSrc); in DrawAxisLine()
216 …DrawHorLine(gfxDstBuffer, Point { static_cast<int16_t>(arcInfo.center.x - outRadius), arcInfo.cent… in DrawAxisLine()
221 …DrawHorLine(gfxDstBuffer, Point { static_cast<int16_t>(arcInfo.center.x + inRadius), arcInfo.cente… in DrawAxisLine()
226 …DrawVerLine(gfxDstBuffer, Point { arcInfo.center.x, static_cast<int16_t>(arcInfo.center.y - outRad… in DrawAxisLine()
231 …DrawVerLine(gfxDstBuffer, Point { arcInfo.center.x, static_cast<int16_t>(arcInfo.center.y + inRadi… in DrawAxisLine()
236 void DrawArc::DrawLineWithDegree(BufferInfo& gfxDstBuffer, in DrawLineWithDegree() argument
247 DrawHorLine(gfxDstBuffer, in DrawLineWithDegree()
266 DrawHorLine(gfxDstBuffer, in DrawLineWithDegree()
271 … DrawLineWithDegreeInner(gfxDstBuffer, arcInfo, start, end, y, mask, style, opaScale, quadrant); in DrawLineWithDegree()
274 …drawEnd = DrawLineWithDegreeInner(gfxDstBuffer, arcInfo, start, end, y, mask, style, opaScale, qua… in DrawLineWithDegree()
275 …DrawLineWithDegreeInner(gfxDstBuffer, arcInfo, drawEnd + 1, end, y, mask, style, opaScale, quadran… in DrawLineWithDegree()
282 int16_t DrawArc::DrawLineWithDegreeInner(BufferInfo& gfxDstBuffer, in DrawLineWithDegreeInner() argument
312 DrawHorLine(gfxDstBuffer, in DrawLineWithDegreeInner()
320 void DrawArc::DrawLineAnti(BufferInfo& gfxDstBuffer, ArcInfo& arcInfo, const Rect& mask, in DrawLineAnti() argument
351 DrawPointAnti(gfxDstBuffer, arcInfo, xAnti, mask, style, antiOpa); in DrawLineAnti()
361 DrawPointAnti(gfxDstBuffer, arcInfo, xAnti, mask, style, antiOpa); in DrawLineAnti()
365 void DrawArc::DrawPointAnti(BufferInfo& gfxDstBuffer, ArcInfo& arcInfo, int16_t x, const Rect& mask, in DrawPointAnti() argument
374 …DrawHorLine(gfxDstBuffer, Point { startX, starty }, arcInfo.imgPos, mask, 0, style, antiOpa, arcIn… in DrawPointAnti()
379 …DrawHorLine(gfxDstBuffer, Point { startX, starty }, arcInfo.imgPos, mask, 0, style, antiOpa, arcIn… in DrawPointAnti()
384 …DrawHorLine(gfxDstBuffer, Point { startX, starty }, arcInfo.imgPos, mask, 0, style, antiOpa, arcIn… in DrawPointAnti()
389 …DrawHorLine(gfxDstBuffer, Point { startX, starty }, arcInfo.imgPos, mask, 0, style, antiOpa, arcIn… in DrawPointAnti()
410 void DrawArc::Draw(BufferInfo& gfxDstBuffer, ArcInfo& arcInfo, const Rect& mask, in Draw() argument
421 DrawCircleNoEndpoint(gfxDstBuffer, arcInfo, mask, style, opa, false); in Draw()
423 DrawCircleNoEndpoint(gfxDstBuffer, arcInfo, mask, style, opa, true); in Draw()
452 DrawCircleNoEndpoint(gfxDstBuffer, endArcInfo, mask, style, opa, true); in Draw()
464 DrawCircleNoEndpoint(gfxDstBuffer, endArcInfo, mask, style, opa, true); in Draw()