cf_pixel_to_color¶
Category: graphics
GitHub: cute_color.h
Converts a CF_Pixel to a color.
CF_Color cf_pixel_to_color(CF_Pixel p) { return cf_make_color_rgba(p.colors.r, p.colors.g, p.colors.b, p.colors.a); }
| Parameters | Description |
|---|---|
p |
The pixel. |
Return Value¶
Returns a CF_Color (0.0f-1.0f) converted from pixel form (0-255).