Mesa (master): st/dri: Allow creating OpenGL 3.3 core contexts

Michel Dänzer daenzer at kemper.freedesktop.org
Thu Jan 30 02:09:50 UTC 2014


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

Author: Michel Dänzer <michel.daenzer at amd.com>
Date:   Wed Jan 29 18:24:04 2014 +0900

st/dri: Allow creating OpenGL 3.3 core contexts

Enables OpenGL 3.3 piglit tests.

Reviewed-by: Marek Olšák <marek.olsak at amd.com>

---

 src/gallium/state_trackers/dri/common/dri_screen.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/gallium/state_trackers/dri/common/dri_screen.c b/src/gallium/state_trackers/dri/common/dri_screen.c
index 6b4c069..7a6dcb2 100644
--- a/src/gallium/state_trackers/dri/common/dri_screen.c
+++ b/src/gallium/state_trackers/dri/common/dri_screen.c
@@ -455,7 +455,7 @@ dri_init_screen_helper(struct dri_screen *screen,
    if (screen->st_api->profile_mask & ST_PROFILE_DEFAULT_MASK)
       screen->sPriv->max_gl_compat_version = 30;
    if (screen->st_api->profile_mask & ST_PROFILE_OPENGL_CORE_MASK)
-      screen->sPriv->max_gl_core_version = 32;
+      screen->sPriv->max_gl_core_version = 33;
    if (screen->st_api->profile_mask & ST_PROFILE_OPENGL_ES1_MASK)
       screen->sPriv->max_gl_es1_version = 11;
    if (screen->st_api->profile_mask & ST_PROFILE_OPENGL_ES2_MASK)




More information about the mesa-commit mailing list