diff options
| author | jussi | 2023-10-31 12:21:25 +0200 |
|---|---|---|
| committer | jussi | 2023-10-31 12:21:25 +0200 |
| commit | d351b7b025f95983e49afaecb2fafef7802996a0 (patch) | |
| tree | da35b3e896042d0f13e4d744df2fb7743d5e7499 /API.md | |
| parent | f8b4b709e62c0fe25e4483925bac4abea5d8cafe (diff) | |
| download | reilua-enhanced-d351b7b025f95983e49afaecb2fafef7802996a0.tar.gz reilua-enhanced-d351b7b025f95983e49afaecb2fafef7802996a0.tar.bz2 reilua-enhanced-d351b7b025f95983e49afaecb2fafef7802996a0.zip | |
More RLGL Initialization functions.
Diffstat (limited to 'API.md')
| -rw-r--r-- | API.md | 52 |
1 files changed, 52 insertions, 0 deletions
@@ -6674,6 +6674,58 @@ Get current OpenGL version --- +> version = RL.rlSetFramebufferWidth( int width ) + +Set current framebuffer width + +--- + +> width = RL.rlGetFramebufferWidth() + +Get default framebuffer width + +- Success return int + +--- + +> version = RL.rlSetFramebufferHeight( int height ) + +Set current framebuffer height + +--- + +> height = RL.rlGetFramebufferHeight() + +Get default framebuffer height + +- Success return int + +--- + +> id = RL.rlGetTextureIdDefault() + +Get default texture id + +- Success return int + +--- + +> id = RL.rlGetShaderIdDefault() + +Get default shader id + +- Success return int + +--- + +> locations = RL.rlGetShaderLocsDefault() + +Get default shader locations + +- Success return int{} + +--- + ## RLGL - Render batch management --- |
