diff options
| author | jussi | 2023-05-15 14:18:58 +0300 |
|---|---|---|
| committer | jussi | 2023-05-15 14:18:58 +0300 |
| commit | 870e3a46a6fcdbd5b264406984d232874f138ea3 (patch) | |
| tree | 3ce5e740a6133634906b2231b135123c54680fa7 /include | |
| parent | b387742850a4d2d6b750f7cdc878ff00d7e4a5fb (diff) | |
| download | reilua-enhanced-870e3a46a6fcdbd5b264406984d232874f138ea3.tar.gz reilua-enhanced-870e3a46a6fcdbd5b264406984d232874f138ea3.tar.bz2 reilua-enhanced-870e3a46a6fcdbd5b264406984d232874f138ea3.zip | |
More rlgl General render state functions. Fixed rlgl function prefix to rl.
Diffstat (limited to 'include')
| -rw-r--r-- | include/lrlgl.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/lrlgl.h b/include/lrlgl.h index c307302..565e816 100644 --- a/include/lrlgl.h +++ b/include/lrlgl.h @@ -1,7 +1,18 @@ #pragma once /* General render state. */ +int lrlglEnableColorBlend( lua_State *L ); +int lrlglDisableColorBlend( lua_State *L ); +int lrlglEnableDepthTest( lua_State *L ); +int lrlglDisableDepthTest( lua_State *L ); +int lrlglEnableDepthMask( lua_State *L ); +int lrlglDisableDepthMask( lua_State *L ); +int lrlglEnableBackfaceCulling( lua_State *L ); +int lrlglDisableBackfaceCulling( lua_State *L ); +int lrlglSetCullFace( lua_State *L ); int lrlglSetLineWidth( lua_State *L ); int lrlglGetLineWidth( lua_State *L ); +int lrlglEnableSmoothLines( lua_State *L ); +int lrlglDisableSmoothLines( lua_State *L ); /* Initialization functions */ int lrlglGetVersion( lua_State *L );
\ No newline at end of file |
