summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tilebuf.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/tilebuf.cc')
-rw-r--r--crawl-ref/source/tilebuf.cc18
1 files changed, 9 insertions, 9 deletions
diff --git a/crawl-ref/source/tilebuf.cc b/crawl-ref/source/tilebuf.cc
index 241673c02f..95b083dd7e 100644
--- a/crawl-ref/source/tilebuf.cc
+++ b/crawl-ref/source/tilebuf.cc
@@ -56,10 +56,10 @@ void VertBuffer<PTVert>::draw() const
ASSERT(m_tex);
GLState state;
- state.array_vertex = true;
+ state.array_vertex = true;
state.array_texcoord = true;
- state.blend = true;
- state.texture = true;
+ state.blend = true;
+ state.texture = true;
GLStateManager::set(state);
m_tex->bind();
@@ -80,8 +80,8 @@ void VertBuffer<PCVert>::draw() const
GLState state;
state.array_vertex = true;
state.array_colour = true;
- state.blend = true;
- state.texture = false;
+ state.blend = true;
+ state.texture = false;
GLStateManager::set(state);
glVertexPointer(2, GL_FLOAT, sizeof(Vert), &(*this)[0].pos_x);
@@ -99,11 +99,11 @@ void VertBuffer<PTCVert>::draw() const
ASSERT(m_tex);
GLState state;
- state.array_vertex = true;
+ state.array_vertex = true;
state.array_texcoord = true;
- state.array_colour = true;
- state.blend = true;
- state.texture = true;
+ state.array_colour = true;
+ state.blend = true;
+ state.texture = true;
GLStateManager::set(state);
m_tex->bind();