summaryrefslogtreecommitdiff
path: root/ReiLua_API.lua
diff options
context:
space:
mode:
authorjussi2024-09-10 12:53:20 +0300
committerjussi2024-09-10 12:53:20 +0300
commitcd6471d339c394a37a1d46119818e0cabdcf5b42 (patch)
tree501d87d701cbc8ecba46498b876c85a6e020fa0d /ReiLua_API.lua
parent415f3b6c019c62ddb065d6d861732531ac7385c2 (diff)
downloadreilua-enhanced-cd6471d339c394a37a1d46119818e0cabdcf5b42.tar.gz
reilua-enhanced-cd6471d339c394a37a1d46119818e0cabdcf5b42.tar.bz2
reilua-enhanced-cd6471d339c394a37a1d46119818e0cabdcf5b42.zip
rlSetVertexAttribute takes pointer as Buffer.
Diffstat (limited to 'ReiLua_API.lua')
-rw-r--r--ReiLua_API.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/ReiLua_API.lua b/ReiLua_API.lua
index 604e6b8..740729b 100644
--- a/ReiLua_API.lua
+++ b/ReiLua_API.lua
@@ -7333,13 +7333,13 @@ function RL.rlUnloadVertexArray( vaoId ) end
---@return any RL.rlUnloadVertexBuffer
function RL.rlUnloadVertexBuffer( vboId ) end
----Set vertex attribute. NOTE: Pointer should be given in size of bytes
+---Set vertex attribute.
---@param index integer
---@param compSize integer
---@param type integer
---@param normalized boolean
---@param stride integer
----@param pointer integer
+---@param pointer any
---@return any RL.rlSetVertexAttribute
function RL.rlSetVertexAttribute( index, compSize, type, normalized, stride, pointer ) end