diff options
| author | jussi | 2025-01-16 19:58:28 +0200 |
|---|---|---|
| committer | jussi | 2025-01-16 19:58:28 +0200 |
| commit | 6ddaea56a5b2181880da194f28d10c4710979c71 (patch) | |
| tree | d416597f2236149e6fba69fbbad1663f87cd7484 /API.md | |
| parent | 5d70906aaf6f4336adcf1d96100b2150db4df904 (diff) | |
| download | reilua-enhanced-6ddaea56a5b2181880da194f28d10c4710979c71.tar.gz reilua-enhanced-6ddaea56a5b2181880da194f28d10c4710979c71.tar.bz2 reilua-enhanced-6ddaea56a5b2181880da194f28d10c4710979c71.zip | |
BUFFER_UNSIGNED_LONG and BUFFER_LONG.
Diffstat (limited to 'API.md')
| -rw-r--r-- | API.md | 28 |
1 files changed, 20 insertions, 8 deletions
@@ -129,9 +129,9 @@ textureData = { RenderTexture, fbo for texture rendering ``` renderTextureData = { - id = unsigned int, --OpenGL texture id - texture = Texture, --Texture base width - depth = Texture, --Texture base height + id = unsigned int, --OpenGL framebuffer object id + texture = Texture, --Color buffer attachment texture + depth = Texture, --Depth buffer attachment texture } ``` @@ -4478,31 +4478,43 @@ C type unsigned int --- -> BUFFER_CHAR = 3 +> BUFFER_UNSIGNED_LONG = 3 + +C type unsigned long + +--- + +> BUFFER_CHAR = 4 C type char --- -> BUFFER_SHORT = 4 +> BUFFER_SHORT = 5 C type short --- -> BUFFER_INT = 5 +> BUFFER_INT = 6 C type int --- -> BUFFER_FLOAT = 6 +> BUFFER_LONG = 7 + +C type long + +--- + +> BUFFER_FLOAT = 8 C type float --- -> BUFFER_DOUBLE = 7 +> BUFFER_DOUBLE = 9 C type double |
