diff options
| author | jussi | 2023-06-03 18:46:20 +0300 |
|---|---|---|
| committer | jussi | 2023-06-03 18:46:20 +0300 |
| commit | 8ade9eeb436f1bc8090df698ccf24595cd21b5e3 (patch) | |
| tree | 97e9528dc066fa619e0679116cb3583d5483b973 /include | |
| parent | ed6d37294a6b72382cca09f6808565b61bd0c36b (diff) | |
| download | reilua-enhanced-8ade9eeb436f1bc8090df698ccf24595cd21b5e3.tar.gz reilua-enhanced-8ade9eeb436f1bc8090df698ccf24595cd21b5e3.tar.bz2 reilua-enhanced-8ade9eeb436f1bc8090df698ccf24595cd21b5e3.zip | |
rlgl Vertex level operations and Draw Textured Polygon Example.
Diffstat (limited to 'include')
| -rw-r--r-- | include/lrlgl.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/lrlgl.h b/include/lrlgl.h index 5f2adae..c56e664 100644 --- a/include/lrlgl.h +++ b/include/lrlgl.h @@ -12,6 +12,16 @@ int lrlglMultMatrixf( lua_State *L ); int lrlglFrustum( lua_State *L ); int lrlglOrtho( lua_State *L ); int lrlglViewport( lua_State *L ); +/* Vertex level operations */ +int lrlglBegin( lua_State *L ); +int lrlglEnd( lua_State *L ); +int lrlglVertex2f( lua_State *L ); +int lrlglVertex3f( lua_State *L ); +int lrlglTexCoord2f( lua_State *L ); +int lrlglNormal3f( lua_State *L ); +int lrlglColor4ub( lua_State *L ); +int lrlglColor3f( lua_State *L ); +int lrlglColor4f( lua_State *L ); /* Textures state */ int lrlglActiveTextureSlot( lua_State *L ); int lrlglEnableTexture( lua_State *L ); |
