summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tilebuf.h
diff options
context:
space:
mode:
authorEnne Walker <enne.walker@gmail.com>2010-05-09 22:27:26 -0400
committerEnne Walker <enne.walker@gmail.com>2010-05-14 18:18:53 -0400
commite9233e8c0fc4cf32b0a1c45d9d8170904cc45f14 (patch)
tree4f3945766a0082e3567b91b206d97053a7b1d5b1 /crawl-ref/source/tilebuf.h
parent0a7ddbff93d14ebd2a6566ae52bb696321cfc078 (diff)
downloadcrawl-ref-e9233e8c0fc4cf32b0a1c45d9d8170904cc45f14.tar.gz
crawl-ref-e9233e8c0fc4cf32b0a1c45d9d8170904cc45f14.zip
Code cleanup for triangles branch.
Applying standards, simplifying code, removing redundant comments.
Diffstat (limited to 'crawl-ref/source/tilebuf.h')
-rw-r--r--crawl-ref/source/tilebuf.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/crawl-ref/source/tilebuf.h b/crawl-ref/source/tilebuf.h
index d9c53f9ffd..006f1c81aa 100644
--- a/crawl-ref/source/tilebuf.h
+++ b/crawl-ref/source/tilebuf.h
@@ -46,10 +46,11 @@ public:
protected:
const GenericTexture *m_tex;
- GLShapeBuffer *vert_buff;
+ GLShapeBuffer *m_vert_buf;
GLState m_state;
drawing_modes m_prim;
- bool colour_verts, texture_verts;
+ bool m_colour_verts;
+ bool m_texture_verts;
};
class FontBuffer : public VertBuffer