mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-26 04:35:16 +00:00
816bd9a7ea
Add ARM only aspect ratio correcting version of Normal2x scaler. Make WinCE port use Normal2x by default if the screen is large enough. Make WinCE port use aspect ratio correcting version if panel is hidden. svn-id: r42843
61 lines
969 B
Makefile
61 lines
969 B
Makefile
MODULE := graphics
|
|
|
|
MODULE_OBJS := \
|
|
cursorman.o \
|
|
dither.o \
|
|
font.o \
|
|
fontman.o \
|
|
fonts/consolefont.o \
|
|
fonts/newfont_big.o \
|
|
fonts/newfont.o \
|
|
fonts/scummfont.o \
|
|
iff.o \
|
|
imagedec.o \
|
|
primitives.o \
|
|
scaler.o \
|
|
scaler/thumbnail_intern.o \
|
|
sjis.o \
|
|
surface.o \
|
|
thumbnail.o \
|
|
VectorRenderer.o \
|
|
VectorRendererSpec.o \
|
|
video/dxa_decoder.o \
|
|
video/flic_decoder.o \
|
|
video/mpeg_player.o \
|
|
video/smk_decoder.o \
|
|
video/video_player.o \
|
|
video/coktelvideo/indeo3.o \
|
|
video/coktelvideo/coktelvideo.o
|
|
|
|
ifndef DISABLE_SCALERS
|
|
MODULE_OBJS += \
|
|
scaler/2xsai.o \
|
|
scaler/aspect.o \
|
|
scaler/scale2x.o \
|
|
scaler/scale3x.o \
|
|
scaler/scalebit.o
|
|
|
|
ifdef USE_ARM_SCALER_ASM
|
|
MODULE_OBJS += \
|
|
scaler/scale2xARM.o \
|
|
scaler/Normal2xARM.o
|
|
endif
|
|
|
|
ifndef DISABLE_HQ_SCALERS
|
|
MODULE_OBJS += \
|
|
scaler/hq2x.o \
|
|
scaler/hq3x.o
|
|
|
|
ifdef HAVE_NASM
|
|
MODULE_OBJS += \
|
|
scaler/hq2x_i386.o \
|
|
scaler/hq3x_i386.o
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|