[Mesa-dev] [PATCH] i965: Allow creation of OpenGL 3.1 contexts
Ian Romanick
idr at freedesktop.org
Fri Aug 24 20:20:57 PDT 2012
From: Ian Romanick <ian.d.romanick at intel.com>
v2: Fix API_OPENGL_CORE handling when TEXTURE_FLOAT_ENABLED is not
defined. Based on review feedback from Eric Anholt.
Signed-off-by: Ian Romanick <ian.d.romanick at intel.com>
---
src/mesa/drivers/dri/i965/brw_context.c | 19 +++++++++++++++++++
1 files changed, 19 insertions(+), 0 deletions(-)
diff --git a/src/mesa/drivers/dri/i965/brw_context.c b/src/mesa/drivers/dri/i965/brw_context.c
index 2945b3c..6bcbb10 100644
--- a/src/mesa/drivers/dri/i965/brw_context.c
+++ b/src/mesa/drivers/dri/i965/brw_context.c
@@ -109,6 +109,25 @@ brwCreateContext(int api,
case API_OPENGLES:
case API_OPENGLES2:
break;
+ case API_OPENGL_CORE: {
+#ifdef TEXTURE_FLOAT_ENABLED
+ const unsigned max_version =
+ (screen->gen == 6 ||
+ (screen->gen == 7 && screen->kernel_has_gen7_sol_reset))
+ ? 31 : 0;
+ const unsigned req_version = major_version * 10 + minor_version;
+
+ if (req_version > max_version) {
+ *error = (max_version == 0)
+ ? __DRI_CTX_ERROR_BAD_API : __DRI_CTX_ERROR_BAD_VERSION;
+ return false;
+ }
+ break;
+#else
+ *error = __DRI_CTX_ERROR_BAD_API;
+ return false;
+#endif
+ }
default:
*error = __DRI_CTX_ERROR_BAD_API;
return false;
--
1.7.6.5
More information about the mesa-dev
mailing list