summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorjussi2023-06-03 18:46:20 +0300
committerjussi2023-06-03 18:46:20 +0300
commit8ade9eeb436f1bc8090df698ccf24595cd21b5e3 (patch)
tree97e9528dc066fa619e0679116cb3583d5483b973 /include
parented6d37294a6b72382cca09f6808565b61bd0c36b (diff)
downloadreilua-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.h10
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 );