mirror of
https://github.com/godotengine/godot.git
synced 2025-01-22 18:43:29 -05:00
Compatibility: Fix ASTC HDR extension detection
This commit is contained in:
parent
0f95e9f8e6
commit
88baa2f82d
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ Config::Config() {
|
|||
|
||||
bptc_supported = extensions.has("GL_ARB_texture_compression_bptc") || extensions.has("EXT_texture_compression_bptc");
|
||||
astc_supported = extensions.has("GL_KHR_texture_compression_astc") || extensions.has("GL_OES_texture_compression_astc") || extensions.has("GL_KHR_texture_compression_astc_ldr") || extensions.has("GL_KHR_texture_compression_astc_hdr");
|
||||
astc_hdr_supported = extensions.has("GL_KHR_texture_compression_astc_ldr");
|
||||
astc_hdr_supported = extensions.has("GL_KHR_texture_compression_astc_hdr");
|
||||
astc_layered_supported = extensions.has("GL_KHR_texture_compression_astc_sliced_3d");
|
||||
|
||||
if (RasterizerGLES3::is_gles_over_gl()) {
|
||||
|
|
Loading…
Reference in a new issue