From 44c3c2fdf1a63f2a444927a69fb48c0eb73b1918 Mon Sep 17 00:00:00 2001 From: Andre Weissflog Date: Mon, 17 Jun 2024 16:49:55 +0200 Subject: [PATCH] dyntex3d-sapp: set texture size to 16x16x3 to reproduce the depth-pitch problem --- sapp/dyntex3d-sapp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sapp/dyntex3d-sapp.c b/sapp/dyntex3d-sapp.c index df62137a..ab3c4824 100644 --- a/sapp/dyntex3d-sapp.c +++ b/sapp/dyntex3d-sapp.c @@ -12,8 +12,8 @@ #include // assert() #include // memset() -#define WIDTH (32) -#define HEIGHT (32) +#define WIDTH (16) +#define HEIGHT (16) #define DEPTH (3) #define RED 0xFF0000FF #define GREEN 0xFF00FF00