summaryrefslogtreecommitdiff
path: root/include/Color.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/Color.h')
-rw-r--r--include/Color.h3
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
};
/*