From d5230bbbda294e7c04f4f78e6c373f8391bb396c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=91=D1=80=D0=B0=D0=BD=D0=B8=D0=BC=D0=B8=D1=80=20=D0=9A?= =?UTF-8?q?=D0=B0=D1=80=D0=B0=D1=9F=D0=B8=D1=9B?= Date: Tue, 25 Oct 2022 19:03:33 -0700 Subject: [PATCH] GL: Added more missing ASTC formats. --- src/renderer_gl.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/renderer_gl.h b/src/renderer_gl.h index 1e42e5459..4c2942a03 100644 --- a/src/renderer_gl.h +++ b/src/renderer_gl.h @@ -558,6 +558,22 @@ typedef uint64_t GLuint64; # define GL_COMPRESSED_RGBA_ASTC_10x6_KHR 0x93B9 #endif // GL_COMPRESSED_RGBA_ASTC_10x6_KHR +#ifndef GL_COMPRESSED_RGBA_ASTC_10x8_KHR +# define GL_COMPRESSED_RGBA_ASTC_10x8_KHR 0x93BA +#endif // GL_COMPRESSED_RGBA_ASTC_10x8_KHR + +#ifndef GL_COMPRESSED_RGBA_ASTC_10x10_KHR +# define GL_COMPRESSED_RGBA_ASTC_10x10_KHR 0x93BB +#endif // GL_COMPRESSED_RGBA_ASTC_10x10_KHR + +#ifndef GL_COMPRESSED_RGBA_ASTC_12x10_KHR +# define GL_COMPRESSED_RGBA_ASTC_12x10_KHR 0x93BC +#endif // GL_COMPRESSED_RGBA_ASTC_12x10_KHR + +#ifndef GL_COMPRESSED_RGBA_ASTC_12x12_KHR +# define GL_COMPRESSED_RGBA_ASTC_12x12_KHR 0x93BD +#endif // GL_COMPRESSED_RGBA_ASTC_12x12_KHR + #ifndef GL_COMPRESSED_SRGB8_ASTC_4x4_KHR # define GL_COMPRESSED_SRGB8_ASTC_4x4_KHR 0x93D0 #endif // GL_COMPRESSED_SRGB8_ASTC_4x4_KHR