Mesa (master): mesa: Set ProfileMask properly for core profile.

Matt Turner mattst88 at kemper.freedesktop.org
Tue Jul 9 21:21:06 UTC 2013


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

Author: Matt Turner <mattst88 at gmail.com>
Date:   Mon Jul  8 16:07:36 2013 -0700

mesa: Set ProfileMask properly for core profile.

Fixes MESA_GL_VERSION_OVERRIDE=3.2 egl-create-context-verify-gl-flavor.

Reviewed-by: Jordan Justen <jordan.l.justen at intel.com>
Reviewed-by: Kenneth Graunke <kenneth at whitecape.org>

---

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

diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c
index 5ad04cc..d687fb7 100644
--- a/src/mesa/main/context.c
+++ b/src/mesa/main/context.c
@@ -636,8 +636,10 @@ _mesa_init_constants(struct gl_context *ctx)
    ctx->Const.MaxTransformFeedbackInterleavedComponents = 4 * MAX_FEEDBACK_ATTRIBS;
    ctx->Const.MaxVertexStreams = 1;
 
-   /* GL 3.2: hard-coded for now: */
-   ctx->Const.ProfileMask = GL_CONTEXT_COMPATIBILITY_PROFILE_BIT;
+   /* GL 3.2  */
+   ctx->Const.ProfileMask = ctx->API == API_OPENGL_CORE
+                          ? GL_CONTEXT_CORE_PROFILE_BIT
+                          : GL_CONTEXT_COMPATIBILITY_PROFILE_BIT;
 
    /** GL_EXT_gpu_shader4 */
    ctx->Const.MinProgramTexelOffset = -8;




More information about the mesa-commit mailing list