projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9bcb9fa
)
mesa/es3: Add _mesa_is_gles3 predicate
author
Ian Romanick
<ian.d.romanick@intel.com>
Tue, 14 Aug 2012 20:24:00 +0000
(13:24 -0700)
committer
Ian Romanick
<ian.d.romanick@intel.com>
Tue, 14 Aug 2012 21:39:29 +0000
(14:39 -0700)
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
src/mesa/main/context.h
patch
|
blob
|
history
diff --git
a/src/mesa/main/context.h
b/src/mesa/main/context.h
index 6b7dafa782aa253cfe3dc029dfe3d36daea41de3..e2387521f57879c649596c95937f4a9f7f47f8e8 100644
(file)
--- a/
src/mesa/main/context.h
+++ b/
src/mesa/main/context.h
@@
-310,6
+310,16
@@
_mesa_is_gles(const struct gl_context *ctx)
}
+/**
+ * Checks if the context is for GLES 3.x
+ */
+static inline GLboolean
+_mesa_is_gles3(const struct gl_context *ctx)
+{
+ return ctx->API == API_OPENGLES2 && ctx->Version >= 30;
+}
+
+
#ifdef __cplusplus
}
#endif