From 352572064428ceb333b3c820140b95a9b9545def Mon Sep 17 00:00:00 2001 From: e2002e Date: Sat, 17 Feb 2024 20:44:57 +0100 Subject: [PATCH] fix RGBA32 3D image --- .../Graphics4/OpenGL/Sources/kinc/backend/graphics4/texture.c.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Backends/Graphics4/OpenGL/Sources/kinc/backend/graphics4/texture.c.h b/Backends/Graphics4/OpenGL/Sources/kinc/backend/graphics4/texture.c.h index 8ad1f415f..b230c8e2d 100644 --- a/Backends/Graphics4/OpenGL/Sources/kinc/backend/graphics4/texture.c.h +++ b/Backends/Graphics4/OpenGL/Sources/kinc/backend/graphics4/texture.c.h @@ -109,6 +109,7 @@ static int convertInternalFormat(kinc_image_format_t format) { case KINC_IMAGE_FORMAT_RGBA64: return GL_RGBA16F_EXT; case KINC_IMAGE_FORMAT_RGBA32: + return GL_RGBA8; default: #ifdef KORE_IOS return GL_RGBA;