diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-06-13 13:14:47 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-06-13 13:14:47 +0200 |
commit | 66004b8c75175227eb432ab0f56274d98a834eab (patch) | |
tree | 7bb37ee339218f41c200bb3c35fdf932e41d6118 /makefile | |
parent | 24fc13a036fb10140ed1b60dd1e9005821600fc1 (diff) |
2-pass rendering working w/ fixed resolution + upscaling
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -15,15 +15,15 @@ all: main FORCE main: main.o main: die.o main: shader.o -main: visuals_frag.o +main: pass1_frag.o main: fill_vert.o -main: output_frag.o +main: pass2_frag.o main: uniform.o # fix compile order main.o: fill_vert.h -main.o: visuals_frag.h -main.o: output_frag.h +main.o: pass1_frag.h +main.o: pass2_frag.h %.s %.h &: %.spv ./blob $< $* |