diff options
author | pixel <pixel> | 2003-03-14 13:29:48 +0000 |
---|---|---|
committer | pixel <pixel> | 2003-03-14 13:29:48 +0000 |
commit | 679fc7ca4891979cb14b8335014cd959ece774a8 (patch) | |
tree | e3f27771817fa7571797160f54beccb18e789df7 /include/Color.h | |
parent | 445fb07281859322b4b76b0a92dda2ccea430947 (diff) |
Changing glcolor
Diffstat (limited to 'include/Color.h')
-rw-r--r-- | include/Color.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/Color.h b/include/Color.h index 0f64e89..7e5432c 100644 --- a/include/Color.h +++ b/include/Color.h @@ -6,9 +6,6 @@ struct Color { R(aR), G(aG), B(aB), A(aA) { } Color(const Color & c) : R(c.R), G(c.G), B(c.B), A(c.A) { } 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 }; /* |