Lines Matching refs:uint8_t
41 enum RenderUpdateFlag : uint8_t {None = 0, Path = 1, Color = 2, Gradient = 4, Stroke = 8, Transform…
44 enum ColorSpace : uint8_t
59 uint8_t* buf8; //for explicit 8bits grayscale
65 uint8_t channelSize = 0;
89 uint8_t opacity;
109 uint8_t color[4] = {0, 0, 0, 0};
193 uint8_t color[4] = {0, 0, 0, 0}; //r, g, b, a
202 void fillColor(uint8_t* r, uint8_t* g, uint8_t* b, uint8_t* a) const in fillColor()
224 bool strokeColor(uint8_t* r, uint8_t* g, uint8_t* b, uint8_t* a) const in strokeColor()
285 uint8_t direction; //0: both, 1: horizontal, 2: vertical
286 uint8_t border; //0: duplicate, 1: wrap
287 uint8_t quality; //0 ~ 100 (optional)
315 …ape, RenderData data, const Matrix& transform, Array<RenderData>& clips, uint8_t opacity, RenderUp…
316 …ace, RenderData data, const Matrix& transform, Array<RenderData>& clips, uint8_t opacity, RenderUp…
333 virtual bool beginComposite(RenderCompositor* cmp, CompositeMethod method, uint8_t opacity) = 0;
362 static inline uint8_t CHANNEL_SIZE(ColorSpace cs) in CHANNEL_SIZE()
371 return sizeof(uint8_t); in CHANNEL_SIZE()
401 static inline uint8_t MULTIPLY(uint8_t c, uint8_t a) in MULTIPLY()