Mesa (master): mesa: Ignore fixed-index primitive restart in ArrayElement() .

Kenneth Graunke kwg at kemper.freedesktop.org
Wed May 29 21:20:56 UTC 2013


Module: Mesa
Branch: master
Commit: 51c0ffacb24d1b4e48f8f53dc8e191b64fbd679a
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=51c0ffacb24d1b4e48f8f53dc8e191b64fbd679a

Author: Kenneth Graunke <kenneth at whitecape.org>
Date:   Wed May 29 08:29:26 2013 -0700

mesa: Ignore fixed-index primitive restart in ArrayElement().

GL_PRIMITIVE_RESTART_FIXED_INDEX is only supposed to apply to
glDrawElements*.  This code is for legacy drawing paths and display
lists, so it shouldn't apply.

NOTE: This is a candidate for the 9.1 branch.

Signed-off-by: Kenneth Graunke <kenneth at whitecape.org>
Reviewed-by: Eric Anholt <eric at anholt.net>
Reviewed-by: Ian Romanick <ian.d.romanick at intel.com>

---

 src/mesa/main/api_arrayelt.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/mesa/main/api_arrayelt.c b/src/mesa/main/api_arrayelt.c
index bd55f8e..8e581c8 100644
--- a/src/mesa/main/api_arrayelt.c
+++ b/src/mesa/main/api_arrayelt.c
@@ -1666,7 +1666,7 @@ _ae_ArrayElement(GLint elt)
    /* If PrimitiveRestart is enabled and the index is the RestartIndex
     * then we call PrimitiveRestartNV and return.
     */
-   if (ctx->Array._PrimitiveRestart && (elt == ctx->Array._RestartIndex)) {
+   if (ctx->Array.PrimitiveRestart && (elt == ctx->Array.RestartIndex)) {
       CALL_PrimitiveRestartNV((struct _glapi_table *)disp, ());
       return;
    }




More information about the mesa-commit mailing list