Lines Matching refs:y
60 for (uint32_t y = 0; y < GetHeight(); y++) { in Clear() local
61 pixfmtType_->CopyHLine(0, y, GetWidth(), color); in Clear()
66 void RenderBase::BlendHLine(int32_t x1, int32_t y, int32_t x2, const Rgba8T& color, uint8_t cover) in BlendHLine() argument
73 if (y > GetYMax() || y < GetYMin() || x1 > GetXMax() || x2 < GetXMin()) { in BlendHLine()
83 pixfmtType_->BlendHLine(x1, y, x2 - x1 + 1, color, cover); in BlendHLine()
86 void RenderBase::BlendSolidHSpan(int32_t x, int32_t y, int32_t len, const Rgba8T& color, const uint… in BlendSolidHSpan() argument
88 if (y > GetYMax() || y < GetYMin()) { in BlendSolidHSpan()
105 pixfmtType_->BlendSolidHSpan(x, y, len, color, covers); in BlendSolidHSpan()
108 void RenderBase::CopyColorHSpan(int32_t x, int32_t y, int32_t len, const Rgba8T* colors) in CopyColorHSpan() argument
111 if (!ColorHSpanHandler(x, y, len, colors, covers)) { in CopyColorHSpan()
114 pixfmtType_->CopyColorHSpan(x, y, len, colors); in CopyColorHSpan()
117 void RenderBase::BlendColorHSpan(int32_t x, int32_t y, int32_t len, const Rgba8T* colors, const uin… in BlendColorHSpan() argument
120 if (!ColorHSpanHandler(x, y, len, colors, covers)) { in BlendColorHSpan()
123 pixfmtType_->BlendColorHSpan(x, y, len, colors, covers, cover); in BlendColorHSpan()
126 bool RenderBase::ColorHSpanHandler(int32_t& x, const int32_t& y, int32_t& len, const Rgba8T*& color… in ColorHSpanHandler() argument
129 if (y > GetYMax() || y < GetYMin()) { in ColorHSpanHandler()