diff options
Diffstat (limited to 'include/Color.h')
-rw-r--r-- | include/Color.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/Color.h b/include/Color.h index 293c55c..1d262d4 100644 --- a/include/Color.h +++ b/include/Color.h @@ -5,6 +5,9 @@ struct Color { Color(unsigned char aR, unsigned char aG, unsigned char aB, unsigned char aA = 255) : R(aR), G(aG), B(aB), A(aA) { } unsigned char R, G, B, A; +#ifdef GL_COLOR + void Bind() { glColor4d((double) R / 255, (double) G / 255, (double) B / 255, (double) A / 255); } +#endif }; #endif |