scummvm/graphics/module.mk
Johannes Schickel d9d366dbc9 GRAPHICS: Remove dithering code.
The code is not used anymore and neither the Mohawk developers, who expressed
that they might need dithering for some games, nor DrMcCoy, who wrote it, need
this code anymore.

In the worst case if anyone needs it again, we can revert this commit.
2011-09-06 16:51:04 +02:00

63 lines
917 B
Makefile

MODULE := graphics
MODULE_OBJS := \
conversion.o \
cursorman.o \
font.o \
fontman.o \
fonts/bdf.o \
fonts/consolefont.o \
fonts/newfont_big.o \
fonts/newfont.o \
fonts/winfont.o \
iff.o \
imagedec.o \
jpeg.o \
maccursor.o \
pict.o \
png.o \
primitives.o \
scaler.o \
scaler/thumbnail_intern.o \
sjis.o \
surface.o \
thumbnail.o \
VectorRenderer.o \
VectorRendererSpec.o \
wincursor.o \
yuv_to_rgb.o
ifdef USE_SCALERS
MODULE_OBJS += \
scaler/2xsai.o \
scaler/aspect.o \
scaler/downscaler.o \
scaler/scale2x.o \
scaler/scale3x.o \
scaler/scalebit.o
ifdef USE_ARM_SCALER_ASM
MODULE_OBJS += \
scaler/downscalerARM.o \
scaler/scale2xARM.o \
scaler/Normal2xARM.o
endif
ifdef USE_HQ_SCALERS
MODULE_OBJS += \
scaler/hq2x.o \
scaler/hq3x.o
ifdef USE_NASM
MODULE_OBJS += \
scaler/hq2x_i386.o \
scaler/hq3x_i386.o
endif
endif
endif
# Include common rules
include $(srcdir)/rules.mk