From 44e70cb7cea5ef7d99893b4760abfb6fdccf8845 Mon Sep 17 00:00:00 2001 From: hgn Date: Tue, 9 Apr 2024 02:14:51 +0100 Subject: [PATCH] use black instead of pink/black --- vg_tex.c | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/vg_tex.c b/vg_tex.c index 1ed8c96..8791dd8 100644 --- a/vg_tex.c +++ b/vg_tex.c @@ -5,6 +5,7 @@ #include static u8 const_vg_tex2d_err[] ={ +#ifdef VG_DEBUG 0xff,0x00,0xff,0xff, 0x00,0x00,0x00,0xff, 0xff,0x00,0xff,0xff, 0x00,0x00,0x00,0xff, 0x00,0x00,0x00,0xff, 0xff,0x00,0xff,0xff, @@ -13,6 +14,16 @@ static u8 const_vg_tex2d_err[] ={ 0xff,0x00,0xff,0xff, 0x00,0x00,0x00,0xff, 0x00,0x00,0x00,0xff, 0xff,0x00,0xff,0xff, 0x00,0x00,0x00,0xff, 0xff,0x00,0xff,0xff, +#else + 0x00,0x00,0x00,0xff, 0x00,0x00,0x00,0xff, + 0x00,0x00,0x00,0xff, 0x00,0x00,0x00,0xff, + 0x00,0x00,0x00,0xff, 0x00,0x00,0x00,0xff, + 0x00,0x00,0x00,0xff, 0x00,0x00,0x00,0xff, + 0x00,0x00,0x00,0xff, 0x00,0x00,0x00,0xff, + 0x00,0x00,0x00,0xff, 0x00,0x00,0x00,0xff, + 0x00,0x00,0x00,0xff, 0x00,0x00,0x00,0xff, + 0x00,0x00,0x00,0xff, 0x00,0x00,0x00,0xff, +#endif }; #define QOI_SRGB 0 -- 2.25.1