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 <chrisf@ijw.co.nz> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:

committed by
Kenneth Graunke

parent
679c93ff89
commit
d30a7d2eb4
@@ -885,7 +885,7 @@ _mesa_get_enabled_extension(struct gl_context *ctx, GLuint index)
|
|||||||
base = (GLboolean*) &ctx->Extensions;
|
base = (GLboolean*) &ctx->Extensions;
|
||||||
n = 0;
|
n = 0;
|
||||||
for (i = extension_table; i->name != 0; ++i) {
|
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)
|
if (n == index)
|
||||||
return (const GLubyte*) i->name;
|
return (const GLubyte*) i->name;
|
||||||
else
|
else
|
||||||
|
Reference in New Issue
Block a user