diff options
| author | jussi | 2022-06-19 12:18:09 +0300 |
|---|---|---|
| committer | jussi | 2022-06-19 12:18:09 +0300 |
| commit | 1529202e26a02461708784d8830475261893a537 (patch) | |
| tree | 134f627a4eb131f1daf0b3541fe925b7e5bcc6fb /doc_parser.lua | |
| parent | 7b26e0aa68fb45612083b8e6b5c970564804803d (diff) | |
| download | reilua-enhanced-1529202e26a02461708784d8830475261893a537.tar.gz reilua-enhanced-1529202e26a02461708784d8830475261893a537.tar.bz2 reilua-enhanced-1529202e26a02461708784d8830475261893a537.zip | |
RLGL line width functions.
Diffstat (limited to 'doc_parser.lua')
| -rw-r--r-- | doc_parser.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc_parser.lua b/doc_parser.lua index b4dcc3e..41bf5cd 100644 --- a/doc_parser.lua +++ b/doc_parser.lua @@ -83,7 +83,7 @@ OpenGL style 4x4. Identity matrix example\n\n---\n" ) apiFile:write( "\n> Color = { 255, 255, 255, 255 } or { r = 255, g = 255, b = 255, a = 255 }\n\ { r, g, b ,a }. Color type, RGBA (32bit)\n\n---\n" ) apiFile:write( "\n> Rectangle = { 0.0, 0.0, 1.0, 1.0 } or { x = 0.0, y = 0.0, width = 1.0, height = 1.0 }\n\ -{ x, y, w ,h }. Rectangle type\n\n---\n" ) +{ x, y, width ,height }. Rectangle type\n\n---\n" ) apiFile:write( "\n> Image = ImageId\n\ int id. Image type (multiple pixel formats supported). NOTE: Data stored in CPU memory (RAM)\n\n---\n" ) apiFile:write( "\n> Texture = TextureId\n\ @@ -154,6 +154,7 @@ local sourceFiles = { "src/rmath.c", "src/rgui.c", "src/lights.c", + "src/rlgl.c", } for _, src in ipairs( sourceFiles ) do |
