diff options
author | Kenneth Graunke <[email protected]> | 2013-05-29 08:31:54 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2013-05-29 14:22:17 -0700 |
commit | e6efb900e7a7601797b2e8263388fe72f6820e9b (patch) | |
tree | 17853884e9a7271b17ce5512923f932d04728f34 /src/mesa/main/varray.c | |
parent | 51c0ffacb24d1b4e48f8f53dc8e191b64fbd679a (diff) |
mesa: Delete the ctx->Array._RestartIndex derived state.
It's incorrect and isn't used any longer.
v2: Actually flush vertices/flag _NEW_TRANSFORM on RestartIndex change.
NOTE: This is a candidate for the 9.1 branch.
Signed-off-by: Kenneth Graunke <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa/main/varray.c')
-rw-r--r-- | src/mesa/main/varray.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mesa/main/varray.c b/src/mesa/main/varray.c index dff00700430..db0945e3095 100644 --- a/src/mesa/main/varray.c +++ b/src/mesa/main/varray.c @@ -1109,10 +1109,9 @@ _mesa_PrimitiveRestartIndex(GLuint index) return; } - ctx->Array.RestartIndex = index; - if (ctx->Array.PrimitiveRestart && ctx->Array._RestartIndex != index) { + if (ctx->Array.RestartIndex != index) { FLUSH_VERTICES(ctx, _NEW_TRANSFORM); - ctx->Array._RestartIndex = index; + ctx->Array.RestartIndex = index; } } |