aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/vbo/vbo_exec.c
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2013-10-11 09:20:56 -0600
committerBrian Paul <[email protected]>2013-10-11 17:07:44 -0600
commitffe529352b9648b9a0c54d20fbe79c2d04b98ed5 (patch)
tree4a84ddedc507d134d25b3e9be68180daa3cd9e47 /src/mesa/vbo/vbo_exec.c
parent2a429f9d9c3ef3f5ec5e4946c5b20b24738fa789 (diff)
vbo: assorted minor clean-ups
Use GL_TRUE/FALSE instead of 1/0. Remove extraneous parentheses. Remove trailing whitespace.
Diffstat (limited to 'src/mesa/vbo/vbo_exec.c')
-rw-r--r--src/mesa/vbo/vbo_exec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/vbo/vbo_exec.c b/src/mesa/vbo/vbo_exec.c
index aa2c7b07bbd..2f05e00c8af 100644
--- a/src/mesa/vbo/vbo_exec.c
+++ b/src/mesa/vbo/vbo_exec.c
@@ -100,7 +100,7 @@ void vbo_exec_invalidate_state( struct gl_context *ctx, GLuint new_state )
}
if (new_state & _NEW_EVAL)
- exec->eval.recalculate_maps = 1;
+ exec->eval.recalculate_maps = GL_TRUE;
_ae_invalidate_state(ctx, new_state);
}