diff options
author | Jordan Justen <[email protected]> | 2012-07-19 11:01:27 -0700 |
---|---|---|
committer | Jordan Justen <[email protected]> | 2012-07-30 16:18:57 -0700 |
commit | 3d284dcba6f692ce268c9a2178a30e7a308b2cfc (patch) | |
tree | d781ec86d1145c2a4b108ffb0b9fceb1379c546e | |
parent | 1c29b73f4d9f633e32c03bebc8d505b321d833d9 (diff) |
mesa: add api check functions
These functions make it easier to check for multiple API types.
Signed-off-by: Jordan Justen <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
-rw-r--r-- | 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 a66dd507670..6b7dafa782a 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 |