Skip to content

Commit a3d60b7

Browse files
committed
Add two new gfx files to Makefile and griffin
1 parent 4d728e3 commit a3d60b7

3 files changed

Lines changed: 7 additions & 1 deletion

File tree

Makefile.common

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2690,7 +2690,9 @@ ifeq ($(HAVE_STATIC_VIDEO_FILTERS), 1)
26902690
gfx/video_filters/upscale_256x_320x240.o \
26912691
gfx/video_filters/picoscale_256x_320x240.o \
26922692
gfx/video_filters/upscale_240x160_320x240.o \
2693-
gfx/video_filters/upscale_mix_240x160_320x240.o
2693+
gfx/video_filters/upscale_mix_240x160_320x240.o \
2694+
gfx/video_filters/dedither.o \
2695+
gfx/video_filters/pixel_art_aa.o
26942696
endif
26952697

26962698
ifeq ($(WANT_IOSUHAX), 1)

gfx/video_filters/Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ asflags += -mfpu=neon
105105
endif
106106

107107
objects += blargg_ntsc_snes.$(DYLIB) \
108+
dedither.$(DYLIB) \
108109
phosphor2x.$(DYLIB) \
109110
epx.$(DYLIB) \
110111
lq2x.$(DYLIB) \
@@ -118,6 +119,7 @@ objects += blargg_ntsc_snes.$(DYLIB) \
118119
normal2x_width.$(DYLIB) \
119120
normal2x_height.$(DYLIB) \
120121
normal4x.$(DYLIB) \
122+
pixel_art_aa.$(DYLIB) \
121123
scanline2x.$(DYLIB) \
122124
grid2x.$(DYLIB) \
123125
grid3x.$(DYLIB) \

griffin/griffin.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1004,6 +1004,8 @@ FILTERS
10041004
============================================================ */
10051005
#ifdef HAVE_FILTERS_BUILTIN
10061006
#ifdef HAVE_VIDEO_FILTER
1007+
#include "../gfx/video_filters/dedither.c"
1008+
#include "../gfx/video_filters/pixel_art_aa.c"
10071009
#include "../gfx/video_filters/2xsai.c"
10081010
#include "../gfx/video_filters/super2xsai.c"
10091011
#include "../gfx/video_filters/supereagle.c"

0 commit comments

Comments
 (0)