From b1335875b19a4db2ae028f8d790784cddcffe8b5 Mon Sep 17 00:00:00 2001 From: rodri Date: Thu, 13 Jun 2024 19:06:37 +0000 Subject: replace the Memimage color buffer with a ulong* one. some fixes. --- graphics.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'graphics.h') diff --git a/graphics.h b/graphics.h index b30dd9f..17ce25e 100644 --- a/graphics.h +++ b/graphics.h @@ -178,7 +178,6 @@ struct FSparams struct SUparams { Framebuf *fb; - Memimage *frag; Renderjob *job; Camera *camera; Entity *entity; @@ -226,7 +225,7 @@ struct Renderjob struct Framebuf { - Memimage *cb; /* color buffer */ + ulong *cb; /* color buffer */ double *zb; /* z/depth buffer */ Rectangle r; }; -- cgit v1.2.3