diff options
| author | jussi | 2024-02-25 14:06:59 +0200 |
|---|---|---|
| committer | jussi | 2024-02-25 14:06:59 +0200 |
| commit | 47ed28b006db71d823cfaa24fa143ab5cfcf279b (patch) | |
| tree | adf35906662b0646a14adfa6a37260c797cd325a /include/textures.h | |
| parent | 631cea6aa7510ba53d4f14b5537e1719a72976b9 (diff) | |
| download | reilua-enhanced-47ed28b006db71d823cfaa24fa143ab5cfcf279b.tar.gz reilua-enhanced-47ed28b006db71d823cfaa24fa143ab5cfcf279b.tar.bz2 reilua-enhanced-47ed28b006db71d823cfaa24fa143ab5cfcf279b.zip | |
Added various missing functions.
Diffstat (limited to 'include/textures.h')
| -rw-r--r-- | include/textures.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/textures.h b/include/textures.h index e8e376f..e53e29c 100644 --- a/include/textures.h +++ b/include/textures.h @@ -28,6 +28,7 @@ int ltexturesGenImageText( lua_State* L ); int ltexturesImageCopy( lua_State* L ); int ltexturesImageFromImage( lua_State* L ); int ltexturesImageText( lua_State* L ); +int ltexturesImageTextEx( lua_State* L ); int ltexturesImageFormat( lua_State* L ); int ltexturesImageToPOT( lua_State* L ); int ltexturesImageCrop( lua_State* L ); @@ -70,6 +71,7 @@ int ltexturesImageDrawCircleLines( lua_State* L ); int ltexturesImageDrawRectangle( lua_State* L ); int ltexturesImageDrawRectangleLines( lua_State* L ); int ltexturesImageDraw( lua_State* L ); +int ltexturesImageDrawText( lua_State* L ); int ltexturesImageDrawTextEx( lua_State* L ); /* Texture loading functions. */ int ltexturesGetTextureDefault( lua_State* L ); @@ -95,6 +97,7 @@ int ltexturesGetTextureMipmaps( lua_State* L ); int ltexturesGetTextureFormat( lua_State* L ); /* Texture drawing functions. */ int ltexturesDrawTexture( lua_State* L ); +int ltexturesDrawTextureEx( lua_State* L ); int ltexturesDrawTextureRec( lua_State* L ); int ltexturesDrawTexturePro( lua_State* L ); int ltexturesDrawTextureNPatch( lua_State* L ); @@ -116,5 +119,4 @@ int ltexturesColorContrast( lua_State* L ); int ltexturesColorAlpha( lua_State* L ); int ltexturesColorAlphaBlend( lua_State* L ); int ltexturesGetColor( lua_State* L ); -int ltexturesGetPixelColor( lua_State* L ); int ltexturesGetPixelDataSize( lua_State* L ); |
