summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/enable.c
diff options
context:
space:
mode:
authorMathias Fröhlich <[email protected]>2011-10-31 18:26:00 +0100
committerMathias Fröhlich <[email protected]>2011-11-29 06:35:44 +0100
commitf364ac1da10ff67eba5196c1074aff579864f741 (patch)
tree2b64ae3db5788847275e61c9bbe56199ab18763b /src/mesa/main/enable.c
parented42c2580717527b2005580940fc766d95bb6b0b (diff)
mesa: Make gl_array_object::_Enabled 64 bits.
Signed-off-by: Mathias Froehlich <[email protected]> Reviewed-by: Brian Paul <[email protected]> Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/mesa/main/enable.c')
-rw-r--r--src/mesa/main/enable.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/enable.c b/src/mesa/main/enable.c
index e9b7fa0bde2..f45589f7de3 100644
--- a/src/mesa/main/enable.c
+++ b/src/mesa/main/enable.c
@@ -54,7 +54,7 @@ static void
client_state(struct gl_context *ctx, GLenum cap, GLboolean state)
{
struct gl_array_object *arrayObj = ctx->Array.ArrayObj;
- GLuint flag;
+ GLbitfield64 flag;
GLboolean *var;
switch (cap) {