diff options
| author | jussi | 2024-02-24 18:09:53 +0200 |
|---|---|---|
| committer | jussi | 2024-02-24 18:09:53 +0200 |
| commit | 631cea6aa7510ba53d4f14b5537e1719a72976b9 (patch) | |
| tree | 936134d4cfa228a4a1d9964823a3a9889df230ef /include | |
| parent | 9f1bec39f9d3d67c5d194fa4553c2ace09656a1c (diff) | |
| download | reilua-enhanced-631cea6aa7510ba53d4f14b5537e1719a72976b9.tar.gz reilua-enhanced-631cea6aa7510ba53d4f14b5537e1719a72976b9.tar.bz2 reilua-enhanced-631cea6aa7510ba53d4f14b5537e1719a72976b9.zip | |
Rest of rlgl and raymath functions.
Diffstat (limited to 'include')
| -rw-r--r-- | include/lrlgl.h | 6 | ||||
| -rw-r--r-- | include/rmath.h | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/include/lrlgl.h b/include/lrlgl.h index b9c45b1..ba07936 100644 --- a/include/lrlgl.h +++ b/include/lrlgl.h @@ -31,6 +31,10 @@ int lrlglEnableVertexBufferElement( lua_State* L ); int lrlglDisableVertexBufferElement( lua_State* L ); int lrlglEnableVertexAttribute( lua_State* L ); int lrlglDisableVertexAttribute( lua_State* L ); +#if defined( GRAPHICS_API_OPENGL_11 ) +int lrlglEnableStatePointer( lua_State* L ); +int lrlglDisableStatePointer( lua_State* L ); +#endif /* Textures state */ int lrlglActiveTextureSlot( lua_State* L ); int lrlglEnableTexture( lua_State* L ); @@ -46,6 +50,7 @@ int lrlglDisableShader( lua_State* L ); int lrlglEnableFramebuffer( lua_State* L ); int lrlglDisableFramebuffer( lua_State* L ); int lrlglActiveDrawBuffers( lua_State* L ); +int lrlglBlitFramebuffer( lua_State* L ); /* General render state. */ int lrlglEnableColorBlend( lua_State* L ); int lrlglDisableColorBlend( lua_State* L ); @@ -60,6 +65,7 @@ int lrlglEnableScissorTest( lua_State* L ); int lrlglDisableScissorTest( lua_State* L ); int lrlglScissor( lua_State* L ); int lrlglEnableWireMode( lua_State* L ); +int lrlglEnablePointMode( lua_State* L ); int lrlglDisableWireMode( lua_State* L ); int lrlglSetLineWidth( lua_State* L ); int lrlglGetLineWidth( lua_State* L ); diff --git a/include/rmath.h b/include/rmath.h index 26642d9..9dd8482 100644 --- a/include/rmath.h +++ b/include/rmath.h @@ -58,6 +58,8 @@ int lmathVector3Angle( lua_State* L ); int lmathVector3Negate( lua_State* L ); int lmathVector3Divide( lua_State* L ); int lmathVector3Normalize( lua_State* L ); +int lmathVector3Project( lua_State* L ); +int lmathVector3Reject( lua_State* L ); int lmathVector3OrthoNormalize( lua_State* L ); int lmathVector3Transform( lua_State* L ); int lmathVector3RotateByQuaternion( lua_State* L ); |
