mesa/es3.1: Add _mesa_is_gles31 helper
authorIan Romanick <ian.d.romanick@intel.com>
Tue, 28 Apr 2015 18:58:56 +0000 (11:58 -0700)
committerIan Romanick <ian.d.romanick@intel.com>
Mon, 4 May 2015 20:49:58 +0000 (13:49 -0700)
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
Reviewed-by: Tapani Pälli <tapani.palli@intel.com>
src/mesa/main/context.h

index d11027d6ae99e7052d9a2dbca9a7d935afbdd8f9..6f3c941016f2d638f9dd2eec00b4aa9671f39d04 100644 (file)
@@ -303,7 +303,7 @@ _mesa_is_gles(const struct gl_context *ctx)
 
 
 /**
- * Checks if the context is for GLES 3.x
+ * Checks if the context is for GLES 3.0 or later
  */
 static inline bool
 _mesa_is_gles3(const struct gl_context *ctx)
@@ -312,6 +312,16 @@ _mesa_is_gles3(const struct gl_context *ctx)
 }
 
 
+/**
+ * Checks if the context is for GLES 3.1 or later
+ */
+static inline bool
+_mesa_is_gles31(const struct gl_context *ctx)
+{
+   return ctx->API == API_OPENGLES2 && ctx->Version >= 31;
+}
+
+
 /**
  * Checks if the context supports geometry shaders.
  */