diff options
author | Marek Olšák <[email protected]> | 2014-08-03 05:17:08 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2014-08-11 21:53:57 +0200 |
commit | 537cbb7e1a06c55260602004a6706f250b0eaf32 (patch) | |
tree | f6ff7125fddb0954fbce0c990c12a55b7703b593 /src/mesa/main/version.h | |
parent | ee9a2b1ae97beb20eec2d4fef1307ab57cad9d3a (diff) |
mesa: add a context-independent variant of _mesa_override_gl_version
v2: changed GLboolean -> bool
Reviewed-by: Ian Romanick <[email protected]>
Reviewed-by: Ilia Mirkin <[email protected]>
Diffstat (limited to 'src/mesa/main/version.h')
-rw-r--r-- | src/mesa/main/version.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/mesa/main/version.h b/src/mesa/main/version.h index 42eada99bf8..15bd6e3d8c8 100644 --- a/src/mesa/main/version.h +++ b/src/mesa/main/version.h @@ -27,14 +27,16 @@ #ifndef VERSION_H #define VERSION_H - -struct gl_context; -struct gl_constants; +#include "mtypes.h" extern void _mesa_compute_version(struct gl_context *ctx); +extern bool +_mesa_override_gl_version_contextless(struct gl_constants *consts, + gl_api *apiOut, GLuint *versionOut); + extern void _mesa_override_gl_version(struct gl_context *ctx); |