gallium: use is_format_supported(PIPE_FORMAT_DXT5_RGBA) to check if s3tc is supported
The PIPE_CAP_S3TC token will be deprecated.
This commit is contained in:
@@ -189,10 +189,6 @@ void st_init_extensions(struct st_context *st)
|
|||||||
ctx->Extensions.ATI_separate_stencil = GL_TRUE;
|
ctx->Extensions.ATI_separate_stencil = GL_TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (screen->get_param(screen, PIPE_CAP_S3TC)) {
|
|
||||||
ctx->Extensions.EXT_texture_compression_s3tc = GL_TRUE;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (screen->get_param(screen, PIPE_CAP_ANISOTROPIC_FILTER)) {
|
if (screen->get_param(screen, PIPE_CAP_ANISOTROPIC_FILTER)) {
|
||||||
ctx->Extensions.EXT_texture_filter_anisotropic = GL_TRUE;
|
ctx->Extensions.EXT_texture_filter_anisotropic = GL_TRUE;
|
||||||
}
|
}
|
||||||
@@ -217,4 +213,10 @@ void st_init_extensions(struct st_context *st)
|
|||||||
PIPE_TEXTURE)) {
|
PIPE_TEXTURE)) {
|
||||||
ctx->Extensions.EXT_texture_sRGB = GL_TRUE;
|
ctx->Extensions.EXT_texture_sRGB = GL_TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (screen->is_format_supported(screen, PIPE_FORMAT_DXT5_RGBA,
|
||||||
|
PIPE_TEXTURE)) {
|
||||||
|
ctx->Extensions.EXT_texture_compression_s3tc = GL_TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user