summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tilebuf.h
diff options
context:
space:
mode:
authorIxtli <cg@325i.org>2010-04-26 19:24:16 +0900
committerEnne Walker <enne.walker@gmail.com>2010-05-14 18:18:51 -0400
commit2458d5828e0a35e288d7b1c41d7f664a620cab77 (patch)
treed2bc6b2c894c86a1579723fa56766964a7d6b1ac /crawl-ref/source/tilebuf.h
parent05acae63239428dc6f7a82e8f01f967e234b67ab (diff)
downloadcrawl-ref-2458d5828e0a35e288d7b1c41d7f664a620cab77.tar.gz
crawl-ref-2458d5828e0a35e288d7b1c41d7f664a620cab77.zip
Struct changes. Added a winding query.
Added a GLWRect for passing rectangles generically. Moved VColour into glwrapper.h; it will survive the purging. Can now ask GLStateManager what winding it's using. Signed-off-by: Enne Walker <enne.walker@gmail.com>
Diffstat (limited to 'crawl-ref/source/tilebuf.h')
-rw-r--r--crawl-ref/source/tilebuf.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/crawl-ref/source/tilebuf.h b/crawl-ref/source/tilebuf.h
index 094b5b4cc5..fab6aae7fb 100644
--- a/crawl-ref/source/tilebuf.h
+++ b/crawl-ref/source/tilebuf.h
@@ -17,22 +17,6 @@ class formatted_string;
class GenericTexture;
class TilesTexture;
-struct VColour
-{
- VColour() {}
- VColour(unsigned char _r, unsigned char _g, unsigned char _b,
- unsigned char _a = 255) : r(_r), g(_g), b(_b), a(_a) {}
-
- unsigned char r;
- unsigned char g;
- unsigned char b;
- unsigned char a;
-
- static VColour white;
- static VColour black;
- static VColour transparent;
-};
-
struct PTCVert
{
float pos_x;