summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/state.c
diff options
context:
space:
mode:
authorMarek Olšák <maraeo@gmail.com>2012-04-19 20:47:22 +0200
committerMarek Olšák <maraeo@gmail.com>2012-04-19 20:48:52 +0200
commitbf3304a84b60a25bbc9de14d11af6e423939d7c3 (patch)
tree837f77adf31cf3f8dba5de9e431dffeea4e31a26 /src/mesa/main/state.c
parentdbf48e88eb11270e080eced8468008ed2c3329cc (diff)
downloadexternal_mesa3d-bf3304a84b60a25bbc9de14d11af6e423939d7c3.zip
external_mesa3d-bf3304a84b60a25bbc9de14d11af6e423939d7c3.tar.gz
external_mesa3d-bf3304a84b60a25bbc9de14d11af6e423939d7c3.tar.bz2
Revert "mesa: only update _MaxElement when we actually need it"
This reverts commit 0de5a21470b3bff9b7c8714e5d960d5ed9d01b9c. I was wrong, we use it in the vbo module too. This fixes a performance regression in Nexuiz.
Diffstat (limited to 'src/mesa/main/state.c')
-rw-r--r--src/mesa/main/state.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mesa/main/state.c b/src/mesa/main/state.c
index 6efc45a..f82e4a2 100644
--- a/src/mesa/main/state.c
+++ b/src/mesa/main/state.c
@@ -562,10 +562,8 @@ _mesa_update_state_locked( struct gl_context *ctx )
new_prog_state |= update_program( ctx );
}
- if (ctx->Const.CheckArrayBounds &&
- (new_state & (_NEW_ARRAY | _NEW_PROGRAM | _NEW_BUFFER_OBJECT))) {
+ if (new_state & (_NEW_ARRAY | _NEW_PROGRAM | _NEW_BUFFER_OBJECT))
_mesa_update_array_object_max_element(ctx, ctx->Array.ArrayObj);
- }
out:
new_prog_state |= update_program_constants(ctx);