mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-03 00:40:09 +01:00
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:
parent
679c93ff89
commit
d30a7d2eb4
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue