From 2265e6a0ef34bd9f99cd767b7abebcc0a4d7725d Mon Sep 17 00:00:00 2001 From: Ray Date: Tue, 3 Mar 2020 15:05:34 +0100 Subject: Update raylib_textures.c --- cheatsheet/raylib_textures.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/cheatsheet/raylib_textures.c b/cheatsheet/raylib_textures.c index 1bdecee..cfe3bff 100644 --- a/cheatsheet/raylib_textures.c +++ b/cheatsheet/raylib_textures.c @@ -69,12 +69,7 @@ void GenTextureMipmaps(Texture2D *texture); // Generate GPU mipmaps for a texture void SetTextureFilter(Texture2D texture, int filterMode); // Set texture scaling filter mode void SetTextureWrap(Texture2D texture, int wrapMode); // Set texture wrapping mode - - // Texture2D configuration functions - void GenTextureMipmaps(Texture2D *texture); // Generate GPU mipmaps for a texture - void SetTextureFilter(Texture2D texture, int filterMode); // Set texture scaling filter mode - void SetTextureWrap(Texture2D texture, int wrapMode); // Set texture wrapping mode - + // Texture2D drawing functions void DrawTexture(Texture2D texture, int posX, int posY, Color tint); // Draw a Texture2D void DrawTextureV(Texture2D texture, Vector2 position, Color tint); // Draw a Texture2D with position defined as Vector2 -- cgit v1.2.3