summaryrefslogtreecommitdiff
path: root/src/mesa/vbo
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2012-11-27 15:34:13 -0700
committerBrian Paul <brianp@vmware.com>2012-11-27 15:34:56 -0700
commitf75acabb9640bcbd3a8e6061695da3d01f55a3ef (patch)
treec09fb2d7e0dfc47d2cd6692e9fab5e89ac33c869 /src/mesa/vbo
parent8765c0d20fb849733c39f088279909c989fbe9e0 (diff)
vbo: move another line of code after declarations
Signed-off-by: Brian Paul <brianp@vmware.com>
Diffstat (limited to 'src/mesa/vbo')
-rw-r--r--src/mesa/vbo/vbo_attrib_tmp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/vbo/vbo_attrib_tmp.h b/src/mesa/vbo/vbo_attrib_tmp.h
index adb22d7a57b..02c283da419 100644
--- a/src/mesa/vbo/vbo_attrib_tmp.h
+++ b/src/mesa/vbo/vbo_attrib_tmp.h
@@ -1020,8 +1020,8 @@ static void GLAPIENTRY
TAG(MultiTexCoordP4uiv)(GLenum target, GLenum type, const GLuint *coords)
{
GET_CURRENT_CONTEXT(ctx);
- ERROR_IF_NOT_PACKED_TYPE(ctx, type, "glMultiTexCoordP4uiv");
GLuint attr = (target & 0x7) + VBO_ATTRIB_TEX0;
+ ERROR_IF_NOT_PACKED_TYPE(ctx, type, "glMultiTexCoordP4uiv");
ATTR_UI(ctx, 4, type, 0, attr, coords[0]);
}