diff options
author | Chris Forbes <[email protected]> | 2012-09-16 19:54:11 +1200 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2012-09-16 01:47:00 -0700 |
commit | d30a7d2eb4b6d853bfa90169341334f2b2a643d5 (patch) | |
tree | 96661251b224bed347c4a1d5005c560492214938 /src | |
parent | 679c93ff89c71cbd3b1d24e88abd38f00b8c1f02 (diff) |
mesa: fix dropped && in glGetStringi()
This fixes glGetStringi(GL_EXTENSIONS,.. for core contexts. Previously,
all extension names returned would be NULL.
NOTE: This is a candidate for release branches.
Signed-off-by: Chris Forbes <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/main/extensions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index 6fe7ad1aebb..bd7c7baf912 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -885,7 +885,7 @@ _mesa_get_enabled_extension(struct gl_context *ctx, GLuint index) base = (GLboolean*) &ctx->Extensions; n = 0; for (i = extension_table; i->name != 0; ++i) { - if (base[i->offset] & (i->api_set & (1 << ctx->API))) { + if (base[i->offset] && (i->api_set & (1 << ctx->API))) { if (n == index) return (const GLubyte*) i->name; else |