Mesa (master): mesa: add api check functions

Jordan Justen jljusten at kemper.freedesktop.org
Tue Jul 31 05:51:44 UTC 2012


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

Author: Jordan Justen <jordan.l.justen at intel.com>
Date:   Thu Jul 19 11:01:27 2012 -0700

mesa: add api check functions

These functions make it easier to check for multiple API types.

Signed-off-by: Jordan Justen <jordan.l.justen at intel.com>
Reviewed-by: Brian Paul <brianp at vmware.com>
Reviewed-by: Eric Anholt <eric at anholt.net>
Reviewed-by: Ian Romanick <ian.d.romanick at intel.com>

---

 src/mesa/main/context.h |   20 ++++++++++++++++++++
 1 files changed, 20 insertions(+), 0 deletions(-)

diff --git a/src/mesa/main/context.h b/src/mesa/main/context.h
index a66dd50..6b7dafa 100644
--- a/src/mesa/main/context.h
+++ b/src/mesa/main/context.h
@@ -290,6 +290,26 @@ do {									\
 /*@}*/
 
 
+/**
+ * Checks if the context is for Desktop GL (Compatibility or Core)
+ */
+static inline GLboolean
+_mesa_is_desktop_gl(const struct gl_context *ctx)
+{
+   return ctx->API == API_OPENGL || ctx->API == API_OPENGL_CORE;
+}
+
+
+/**
+ * Checks if the context is for any GLES version
+ */
+static inline GLboolean
+_mesa_is_gles(const struct gl_context *ctx)
+{
+   return ctx->API == API_OPENGLES || ctx->API == API_OPENGLES2;
+}
+
+
 #ifdef __cplusplus
 }
 #endif




More information about the mesa-commit mailing list