Add a new 'all' parameter to _mesa_get_compressed_formats() to indicate whether
all formats or just those without restrictions/limitations should be returned. We want all when validating the internalFormat parameter to glCompressedTexImage2D but only want unrestricted formats when handling the GL_COMPRESSED_TEXTURE_FORMATS query.
This commit is contained in:
@@ -516,11 +516,12 @@ StateVars = [
|
||||
( "GL_TEXTURE_COMPRESSION_HINT_ARB", GLint,
|
||||
["ctx->Hint.TextureCompression"], "", ["ARB_texture_compression"] ),
|
||||
( "GL_NUM_COMPRESSED_TEXTURE_FORMATS_ARB", GLint,
|
||||
["_mesa_get_compressed_formats(ctx, NULL)"], "", ["ARB_texture_compression"] ),
|
||||
["_mesa_get_compressed_formats(ctx, NULL, GL_FALSE)"],
|
||||
"", ["ARB_texture_compression"] ),
|
||||
( "GL_COMPRESSED_TEXTURE_FORMATS_ARB", GLenum,
|
||||
[],
|
||||
"""GLint formats[100];
|
||||
GLuint i, n = _mesa_get_compressed_formats(ctx, formats);
|
||||
GLuint i, n = _mesa_get_compressed_formats(ctx, formats, GL_FALSE);
|
||||
ASSERT(n <= 100);
|
||||
for (i = 0; i < n; i++)
|
||||
params[i] = ENUM_TO_INT(formats[i]);""",
|
||||
|
Reference in New Issue
Block a user