From 4489f76a69b677006a7dd8d7cd4629d795bfb168 Mon Sep 17 00:00:00 2001 From: pixel Date: Tue, 17 Dec 2002 00:10:04 +0000 Subject: Commit of the day. --- include/Color.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include') 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 -- cgit v1.2.3