summaryrefslogtreecommitdiff
path: root/ReiLua_API.lua
diff options
context:
space:
mode:
authorjussi2024-12-15 18:38:07 +0200
committerjussi2024-12-15 18:38:07 +0200
commit5ff5a3713700aa5ad201be820597c93b61b61860 (patch)
tree679301661c3a1e308d957dc1328254d9d07f2f87 /ReiLua_API.lua
parentb4b81f68c4274a6b4d0b5039b83459a1345ca6da (diff)
downloadreilua-enhanced-5ff5a3713700aa5ad201be820597c93b61b61860.tar.gz
reilua-enhanced-5ff5a3713700aa5ad201be820597c93b61b61860.tar.bz2
reilua-enhanced-5ff5a3713700aa5ad201be820597c93b61b61860.zip
SwapBufferEndianness.
Diffstat (limited to 'ReiLua_API.lua')
-rw-r--r--ReiLua_API.lua5
1 files changed, 5 insertions, 0 deletions
diff --git a/ReiLua_API.lua b/ReiLua_API.lua
index 2a54389..d08eae6 100644
--- a/ReiLua_API.lua
+++ b/ReiLua_API.lua
@@ -2984,6 +2984,11 @@ function RL.CopyBufferData( dst, src, posDst, posSrc, size ) end
---@return any RL.SetBufferData
function RL.SetBufferData( buffer, position, value ) end
+---Swap buffer endianness from big endian to little endian and vice versa
+---@param buffer any
+---@return any RL.SwapBufferEndianness
+function RL.SwapBufferEndianness( buffer ) end
+
---Get buffer data as table in the format it was stored
---- Success return data{}
---@param buffer any