From d64f27bad1f4bbebebc978973e8dc2c160694f0f Mon Sep 17 00:00:00 2001 From: raysan5 Date: Fri, 2 Apr 2021 13:42:07 +0200 Subject: [PATCH] Remove old flag --- src/config.h | 3 --- src/shapes.c | 4 ---- 2 files changed, 7 deletions(-) diff --git a/src/config.h b/src/config.h index 748a53e1f..aef096076 100644 --- a/src/config.h +++ b/src/config.h @@ -111,9 +111,6 @@ //------------------------------------------------------------------------------------ // Module: shapes - Configuration Flags //------------------------------------------------------------------------------------ -// Draw rectangle shapes using font texture white character instead of default white texture -// Allows drawing rectangles and text with a single draw call, very useful for GUI systems! -#define SUPPORT_FONT_TEXTURE 1 // Use QUADS instead of TRIANGLES for drawing when possible // Some lines-based shapes could still use lines #define SUPPORT_QUADS_DRAW_MODE 1 diff --git a/src/shapes.c b/src/shapes.c index 7771c3663..a6ca9ab47 100644 --- a/src/shapes.c +++ b/src/shapes.c @@ -4,10 +4,6 @@ * * CONFIGURATION: * -* #define SUPPORT_FONT_TEXTURE -* Draw rectangle shapes using font texture white character instead of default white texture -* Allows drawing rectangles and text with a single draw call, very useful for GUI systems! -* * #define SUPPORT_QUADS_DRAW_MODE * Use QUADS instead of TRIANGLES for drawing when possible. * Some lines-based shapes could still use lines