Lines Matching refs:r
264 Result Shape::fill(uint8_t r, uint8_t g, uint8_t b, uint8_t a) noexcept in fill() argument
272 …if (r == pImpl->rs.color[0] && g == pImpl->rs.color[1] && b == pImpl->rs.color[2] && a == pImpl->r… in fill()
274 pImpl->rs.color[0] = r; in fill()
297 Result Shape::fillColor(uint8_t* r, uint8_t* g, uint8_t* b, uint8_t* a) const noexcept in fillColor() argument
299 pImpl->rs.fillColor(r, g, b, a); in fillColor()
331 Result Shape::stroke(uint8_t r, uint8_t g, uint8_t b, uint8_t a) noexcept in stroke() argument
333 pImpl->strokeColor(r, g, b, a); in stroke()
338 Result Shape::strokeColor(uint8_t* r, uint8_t* g, uint8_t* b, uint8_t* a) const noexcept in strokeColor() argument
340 if (!pImpl->rs.strokeColor(r, g, b, a)) return Result::InsufficientCondition; in strokeColor()
420 Result Shape::fill(FillRule r) noexcept in fill() argument
422 pImpl->rs.rule = r; in fill()