diff options
| author | jussi | 2023-10-22 22:13:27 +0300 |
|---|---|---|
| committer | jussi | 2023-10-22 22:13:27 +0300 |
| commit | 6915f3e27c7a2f4ed8c90909a9aa9cb8906d1c00 (patch) | |
| tree | 1353262eb323eba14b886daf9510ca02060b74da /include | |
| parent | 95be0403e69b3047a0375cf965dedca0ad876409 (diff) | |
| download | reilua-enhanced-6915f3e27c7a2f4ed8c90909a9aa9cb8906d1c00.tar.gz reilua-enhanced-6915f3e27c7a2f4ed8c90909a9aa9cb8906d1c00.tar.bz2 reilua-enhanced-6915f3e27c7a2f4ed8c90909a9aa9cb8906d1c00.zip | |
rlgl Matrix state management.
Diffstat (limited to 'include')
| -rw-r--r-- | include/lrlgl.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/include/lrlgl.h b/include/lrlgl.h index 40df95c..7ca2740 100644 --- a/include/lrlgl.h +++ b/include/lrlgl.h @@ -95,4 +95,14 @@ int lrlglUnloadTexture( lua_State *L ); int lrlglLoadFramebuffer( lua_State *L ); int lrlglFramebufferAttach( lua_State *L ); int lrlglFramebufferComplete( lua_State *L ); -int lrlglUnloadFramebuffer( lua_State *L );
\ No newline at end of file +int lrlglUnloadFramebuffer( lua_State *L ); +/* Matrix state management */ +int lrlglGetMatrixModelview( lua_State *L ); +int lrlglGetMatrixProjection( lua_State *L ); +int lrlglGetMatrixTransform( lua_State *L ); +int lrlglGetMatrixProjectionStereo( lua_State *L ); +int lrlglGetMatrixViewOffsetStereo( lua_State *L ); +int lrlglSetMatrixProjection( lua_State *L ); +int lrlglSetMatrixModelview( lua_State *L ); +int lrlglSetMatrixProjectionStereo( lua_State *L ); +int lrlglSetMatrixViewOffsetStereo( lua_State *L ); |
