diff options
| author | jussi | 2023-08-24 20:19:13 +0300 |
|---|---|---|
| committer | jussi | 2023-08-24 20:19:13 +0300 |
| commit | 6e17282197320bfc3af6a225fb3d9e13194022fa (patch) | |
| tree | e0be6b9033481c99dd76f3791927a5e9080989b2 /include | |
| parent | 3fc07a02d5213a88ebb555d3133af2746600cf61 (diff) | |
| download | reilua-enhanced-6e17282197320bfc3af6a225fb3d9e13194022fa.tar.gz reilua-enhanced-6e17282197320bfc3af6a225fb3d9e13194022fa.tar.bz2 reilua-enhanced-6e17282197320bfc3af6a225fb3d9e13194022fa.zip | |
GetFontTexture.
Diffstat (limited to 'include')
| -rw-r--r-- | include/lua_core.h | 1 | ||||
| -rw-r--r-- | include/text.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/include/lua_core.h b/include/lua_core.h index 45ad1f5..ed354b8 100644 --- a/include/lua_core.h +++ b/include/lua_core.h @@ -65,6 +65,7 @@ void uluaPushMatrix( lua_State *L, Matrix matrix ); void uluaPushRay( lua_State *L, Ray ray ); void uluaPushRayCollision( lua_State *L, RayCollision rayCol ); void uluaPushBoundingBox( lua_State *L, BoundingBox box ); +void uluaPushTexture( lua_State *L, Texture texture ); int uluaGetTableLen( lua_State *L ); int uluaGetTableLenIndex( lua_State *L, int index ); diff --git a/include/text.h b/include/text.h index 3754a33..943cbca 100644 --- a/include/text.h +++ b/include/text.h @@ -16,3 +16,4 @@ int ltextMeasureText( lua_State *L ); int ltextGetFontBaseSize( lua_State *L ); int ltextGetFontGlyphCount( lua_State *L ); int ltextGetFontGlyphPadding( lua_State *L ); +int ltextGetFontTexture( lua_State *L ); |
