From: Eunki Hong Date: Sat, 18 Feb 2023 11:14:27 +0000 (+0900) Subject: Make GL index format use unsinged int X-Git-Tag: dali_2.2.16~1^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ed99893a8b52027167b0fc79f03a72f2d5dbbdbd;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git Make GL index format use unsinged int Change-Id: I9aa5076d86e073aa823e8428631f1cdc838277c0 Signed-off-by: Eunki Hong --- 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;