Part of patch #2850021: disable hq-scaler&mt32emu for motoezx&motomagx-platform

svn-id: r44341
This commit is contained in:
Max Horn 2009-09-25 11:21:56 +00:00
parent 761d0e53f9
commit 399c511f90
3 changed files with 14 additions and 2 deletions

View file

@ -523,7 +523,7 @@ bool OSystem_SDL::loadGFXMode() {
assert(_inited); assert(_inited);
_forceFull = true; _forceFull = true;
#if !defined(__MAEMO__) && !defined(GP2XWIZ) #if !defined(__MAEMO__) && !defined(GP2XWIZ) && !defined(LINUXMOTO)
_videoMode.overlayWidth = _videoMode.screenWidth * _videoMode.scaleFactor; _videoMode.overlayWidth = _videoMode.screenWidth * _videoMode.scaleFactor;
_videoMode.overlayHeight = _videoMode.screenHeight * _videoMode.scaleFactor; _videoMode.overlayHeight = _videoMode.screenHeight * _videoMode.scaleFactor;

4
configure vendored
View file

@ -1275,6 +1275,8 @@ if test -n "$_host"; then
add_line_to_config_mk 'USE_ARM_COSTUME_ASM = 1' add_line_to_config_mk 'USE_ARM_COSTUME_ASM = 1'
add_line_to_config_mk 'USE_ARM_SCALER_ASM = 1' add_line_to_config_mk 'USE_ARM_SCALER_ASM = 1'
_backend="linuxmoto" _backend="linuxmoto"
_build_hq_scalers="no"
_mt32emu="no"
;; ;;
motomagx) motomagx)
echo "Cross-compiling to $_host, forcing endianness, alignment and type sizes" echo "Cross-compiling to $_host, forcing endianness, alignment and type sizes"
@ -1292,6 +1294,8 @@ if test -n "$_host"; then
add_line_to_config_mk 'USE_ARM_COSTUME_ASM = 1' add_line_to_config_mk 'USE_ARM_COSTUME_ASM = 1'
add_line_to_config_mk 'USE_ARM_SCALER_ASM = 1' add_line_to_config_mk 'USE_ARM_SCALER_ASM = 1'
_backend="linuxmoto" _backend="linuxmoto"
_build_hq_scalers="no"
_mt32emu="no"
;; ;;
bfin*) bfin*)
_need_memalign=yes _need_memalign=yes

View file

@ -226,6 +226,14 @@ motomagx-mpkg: $(EXECUTABLE)
$(CP) $(srcdir)/dists/motomagx/mpkg/* motomagx/scummvm/ $(CP) $(srcdir)/dists/motomagx/mpkg/* motomagx/scummvm/
tar -C motomagx -cvzf motomagx/ScummVM.mpkg scummvm tar -C motomagx -cvzf motomagx/ScummVM.mpkg scummvm
motomagx-mgx: $(EXECUTABLE)
$(MKDIR) motomagx/scummvm
$(STRIP) $(EXECUTABLE) -o motomagx/scummvm/$(EXECUTABLE)
$(INSTALL) -c -m 644 $(DIST_FILES_THEMES) $(DIST_FILES_ENGINEDATA) motomagx/scummvm/
$(CP) $(srcdir)/backends/vkeybd/packs/vkeybd_default.zip motomagx/scummvm/
$(CP) $(srcdir)/dists/motomagx/mgx/* motomagx/scummvm/
tar -C motomagx -cvzf motomagx/ScummVM.mgx scummvm
motomagx-pep: $(EXECUTABLE) motomagx-pep: $(EXECUTABLE)
$(MKDIR) motomagx/pep $(MKDIR) motomagx/pep
$(CP) -r $(srcdir)/dists/motomagx/pep/* motomagx/pep $(CP) -r $(srcdir)/dists/motomagx/pep/* motomagx/pep
@ -234,7 +242,7 @@ motomagx-pep: $(EXECUTABLE)
$(CP) $(srcdir)/backends/vkeybd/packs/vkeybd_default.zip motomagx/pep/app $(CP) $(srcdir)/backends/vkeybd/packs/vkeybd_default.zip motomagx/pep/app
tar -C motomagx/pep -czvf motomagx/ScummVM.pep app description.ini scummvm_big_usr.png scummvm_small_usr.png tar -C motomagx/pep -czvf motomagx/ScummVM.pep app description.ini scummvm_big_usr.png scummvm_small_usr.png
.PHONY: deb bundle osxsnap win32dist wiidist motoezx motomagx-mpkg motomagx-pep install uninstall .PHONY: deb bundle osxsnap win32dist wiidist motoezx motomagx-mpkg motomagx-mgx motomagx-pep install uninstall
# #
# ARM specific # ARM specific