From ed99893a8b52027167b0fc79f03a72f2d5dbbdbd Mon Sep 17 00:00:00 2001 From: Eunki Hong Date: Sat, 18 Feb 2023 20:14:27 +0900 Subject: [PATCH] Make GL index format use unsinged int Change-Id: I9aa5076d86e073aa823e8428631f1cdc838277c0 Signed-off-by: Eunki Hong --- dali/internal/graphics/gles-impl/gles-graphics-types.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dali/internal/graphics/gles-impl/gles-graphics-types.h b/dali/internal/graphics/gles-impl/gles-graphics-types.h index 73454e6..548d2176 100644 --- a/dali/internal/graphics/gles-impl/gles-graphics-types.h +++ b/dali/internal/graphics/gles-impl/gles-graphics-types.h @@ -1283,6 +1283,11 @@ struct GLIndexFormat format = GL_UNSIGNED_SHORT; break; } + case Format::R32_UINT: + { + format = GL_UNSIGNED_INT; + break; + } default: { format = 0; -- 2.7.4