diff options
| author | jussi | 2024-02-16 17:28:09 +0200 |
|---|---|---|
| committer | jussi | 2024-02-16 17:28:09 +0200 |
| commit | b2b821929505aea2535d38382b743ad5dd5d1fa0 (patch) | |
| tree | 83c79a9afef9e566325f0d987f167a6d97bb2039 /API.md | |
| parent | 48adbe20dc022d286875408d215ef323c853e6f4 (diff) | |
| download | reilua-enhanced-b2b821929505aea2535d38382b743ad5dd5d1fa0.tar.gz reilua-enhanced-b2b821929505aea2535d38382b743ad5dd5d1fa0.tar.bz2 reilua-enhanced-b2b821929505aea2535d38382b743ad5dd5d1fa0.zip | |
GetBufferData extra arguments. GetBufferElementSize and GetBufferLength.
Diffstat (limited to 'API.md')
| -rw-r--r-- | API.md | 20 |
1 files changed, 18 insertions, 2 deletions
@@ -5076,7 +5076,7 @@ Unload buffer data --- -> data = RL.GetBufferData( Buffer buffer ) +> data = RL.GetBufferData( Buffer buffer, int position, int length ) Get buffer data as table in the format it was stored @@ -5094,7 +5094,23 @@ Get buffer type > size = RL.GetBufferSize( Buffer buffer ) -Get buffer size +Get buffer size in bytes + +- Success return int + +--- + +> size = RL.GetBufferElementSize( Buffer buffer ) + +Get buffer element size in bytes + +- Success return int + +--- + +> length = RL.GetBufferLength( Buffer buffer ) + +Get buffer element count - Success return int |
