mirror of
https://github.com/drewcassidy/quicktex.git
synced 2024-09-13 06:37:34 +00:00
fix parameter hiding of rgba
This commit is contained in:
parent
eea15dcc4e
commit
539980f75f
@ -36,7 +36,7 @@ class Color {
|
|||||||
|
|
||||||
constexpr Color() { SetRGBA(0, 0, 0, 0xFF); }
|
constexpr Color() { SetRGBA(0, 0, 0, 0xFF); }
|
||||||
|
|
||||||
constexpr Color(uint8_t r, uint8_t g, uint8_t b, uint8_t a = 0xFF) { SetRGBA(r, g, b, a); }
|
constexpr Color(uint8_t vr, uint8_t vg, uint8_t vb, uint8_t va = 0xFF) { SetRGBA(vr, vg, vb, va); }
|
||||||
|
|
||||||
Color(Vector4Int v);
|
Color(Vector4Int v);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user