From e056446750bff6db15842aea662f18a322052d8c Mon Sep 17 00:00:00 2001 From: jussi Date: Thu, 9 Nov 2023 21:24:58 +0200 Subject: Organized core functions. --- src/textures.c | 24 ------------------------ 1 file changed, 24 deletions(-) (limited to 'src/textures.c') diff --git a/src/textures.c b/src/textures.c index f31d4d8..2274aa9 100644 --- a/src/textures.c +++ b/src/textures.c @@ -1258,30 +1258,6 @@ int ltexturesDrawTextureNPatch( lua_State *L ) { return 0; } -/* -> RL.BeginTextureMode( RenderTexture target ) - -Begin drawing to render texture -*/ -int ltexturesBeginTextureMode( lua_State *L ) { - RenderTexture *renderTexture = uluaGetRenderTexture( L, 1 ); - - BeginTextureMode( *renderTexture ); - - return 0; -} - -/* -> RL.EndTextureMode() - -Ends drawing to render texture -*/ -int ltexturesEndTextureMode( lua_State *L ) { - EndTextureMode(); - - return 0; -} - /* ## Textures - Texture Configuration */ -- cgit v1.2.3