Mesa (master): mesa: add PrimitiveRestartInSoftware to gl_context.Const

Jordan Justen jljusten at kemper.freedesktop.org
Thu May 17 18:05:32 UTC 2012


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

Author: Jordan Justen <jordan.l.justen at intel.com>
Date:   Mon May  7 15:39:31 2012 -0700

mesa: add PrimitiveRestartInSoftware to gl_context.Const

If set, then the VBO module will handle all primitive
restart scenarios before calling the driver draw_prims.

Software primitive restart support is disabled by default.

Signed-off-by: Jordan Justen <jordan.l.justen at intel.com>
Reviewed-by: Ian Romanick <ian.d.romanick at intel.com>
Reviewed-by: Kenneth Graunke <kenneth at whitecape.org>

---

 src/mesa/main/context.c |    3 +++
 src/mesa/main/mtypes.h  |    5 +++++
 2 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c
index bafd250..df0452c 100644
--- a/src/mesa/main/context.c
+++ b/src/mesa/main/context.c
@@ -662,6 +662,9 @@ _mesa_init_constants(struct gl_context *ctx)
 
    /* GL_ARB_robustness */
    ctx->Const.ResetStrategy = GL_NO_RESET_NOTIFICATION_ARB;
+
+   /* PrimitiveRestart */
+   ctx->Const.PrimitiveRestartInSoftware = GL_FALSE;
 }
 
 
diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h
index c306ac6..aa1a8ef 100644
--- a/src/mesa/main/mtypes.h
+++ b/src/mesa/main/mtypes.h
@@ -2845,6 +2845,11 @@ struct gl_constants
     */
    GLboolean GLSLSkipStrictMaxVaryingLimitCheck;
    GLboolean GLSLSkipStrictMaxUniformLimitCheck;
+
+   /**
+    * Force software support for primitive restart in the VBO module.
+    */
+   GLboolean PrimitiveRestartInSoftware;
 };
 
 




More information about the mesa-commit mailing list