summaryrefslogtreecommitdiff
path: root/src/code/PreRender.c
diff options
context:
space:
mode:
authormzxrules <mzxrules@gmail.com>2025-02-26 17:18:30 -0500
committerGitHub <noreply@github.com>2025-02-26 17:18:30 -0500
commitcf1a39c26fca0f7827fef79d08b114fde1c43cce (patch)
treeccbebda2637107cf2c2742639f0f808ec4374c47 /src/code/PreRender.c
parent2b30c61a2698862e3debd50c2be193df23f9e8b5 (diff)
Reduce dependencies on global.h (10) (#2490)
* reduce z64.h size * fix z_cheap_proc.inc.c * ,bss * remove temp delcaration
Diffstat (limited to 'src/code/PreRender.c')
-rw-r--r--src/code/PreRender.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/code/PreRender.c b/src/code/PreRender.c
index 8e002a5a1..9dcb28f3a 100644
--- a/src/code/PreRender.c
+++ b/src/code/PreRender.c
@@ -5,8 +5,15 @@
* buffer copies and coverage drawing. Also contains software implementations of the Video Interface anti-aliasing and
* divot filters.
*/
-#include "global.h"
+#include "libu64/debug.h"
#include "alloca.h"
+#include "color.h"
+#include "gfx.h"
+#include "prerender.h"
+#include "regs.h"
+
+#include "macros.h"
+#include "global.h"
void PreRender_SetValuesSave(PreRender* this, u32 width, u32 height, void* fbuf, void* zbuf, void* cvg) {
this->widthSave = width;