Lines Matching refs:y
33 vertices_->MoveTo(point.x, point.y); in MoveTo()
40 vertices_->LineTo(point.x, point.y); in LineTo()
42 vertices_->MoveTo(point.x, point.y); in LineTo()
49 vertices_->CubicBezierCurve(control1.x, control1.y, control2.x, control2.y, end.x, end.y); in CurveTo()
61 vertices_->LineTo(float(center.x + sinma), float(center.y - cosma)); in Arc()
63 vertices_->MoveTo(float(center.x + sinma), float(center.y - cosma)); in Arc()
78 vertices_->ArcTo(radius, radius, angle, largeArcFlag, 1, center.x + sinma, center.y - cosma); in Arc()
89 BezierArc arc(center.x, center.y, radius, radius, 0, TWO_TIMES * PI); in Circle()
121 int16_t y = 0; in PerformScan() local
123 y = scanline.GetYLevel(); in PerformScan()
125 for (int32_t i = 0; i < y; i++) { in PerformScan()
141 DrawHorLine(index, y, x - index - 1, OPA_TRANSPARENT, imageInfo); in PerformScan()
143 DrawPixel(i, y, *covers, imageInfo); in PerformScan()
151 DrawHorLine(index, y, imageInfo->header.width - index, OPA_TRANSPARENT, imageInfo); in PerformScan()
154 for (int32_t i = y + 1; i < imageInfo->header.height; i++) { in PerformScan()
159 void ClipUtils::DrawPixel(int16_t x, int16_t y, uint8_t opa, const ImageInfo* imageInfo) in DrawPixel() argument
161 if (x < 0 || x > imageInfo->header.width - 1 || y < 0 || y > imageInfo->header.height - 1) { in DrawPixel()
165 int32_t offset = imageInfo->header.width * y + x; in DrawPixel()
179 void ClipUtils::DrawHorLine(int16_t x, int16_t y, int16_t width, uint8_t opa, const ImageInfo* imag… in DrawHorLine() argument
182 DrawPixel(i, y, opa, imageInfo); in DrawHorLine()