From 10f9a1ea4fe9a61a7ea9412a5fb84b3469319a9c Mon Sep 17 00:00:00 2001 From: snoopyPlayz Date: Tue, 11 Mar 2025 15:47:05 +0100 Subject: [PATCH] added comment --- src/rlgl.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/rlgl.h b/src/rlgl.h index 95af82f2c..83736816b 100644 --- a/src/rlgl.h +++ b/src/rlgl.h @@ -4045,6 +4045,8 @@ void rlSetVertexAttribute(unsigned int index, int compSize, int type, bool norma void rlSetVertexAttributeI(unsigned int index, int compSize, int type, int stride, int offset) { #if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2) + // NOTE: Data type could be: GL_BYTE, GL_UNSIGNED_BYTE, GL_SHORT, GL_UNSIGNED_SHORT, GL_INT, GL_UNSIGNED_INT + size_t offsetNative = offset; glVertexAttribIPointer(index, compSize, type, stride, (void *)offsetNative);