aboutsummaryrefslogtreecommitdiff
path: root/backends
AgeCommit message (Collapse)Author
2016-01-06IOS: FormattingVincent Bénony
2016-01-06IOS: FormattingVincent Bénony
2016-01-06IOS: Moves the helper function were it is used.Vincent Bénony
2016-01-06IOS: Adds a warning regarding the usage of the ChRootFS classVincent Bénony
2016-01-06IOS: Disable scalersVincent Bénony
2016-01-06IOS: Removes a useless variableVincent Bénony
2016-01-06IOS: Merge branch 'master' into ios-fixVincent Bénony
2016-01-06IOS: Merge masterVincent Bénony
2016-01-06IOS: Better emulation of the right mouse buttonVincent Bénony
2016-01-06IOS: Update compilation instructions for FluidSynthVincent Bénony
2016-01-06IOS: Fixes an issue with the mouse pointer when returning from Sam&MaxVincent Bénony
2016-01-06IOS: Brings support for FluidSynthVincent Bénony
2016-01-06IOS: Updates compilation instructionsVincent Bénony
2016-01-06IOS: Info on Linux toolchain, and compilation instructionsVincent Bénony
2016-01-06IOS: Adds iPhone 6/6+ launch screensVincent Bénony
2016-01-06IOS: Switches to OpenGL ES 2.0 to ease debugging with XcodeVincent Bénony
2016-01-06IOS: TypoVincent Bénony
2016-01-06IOS: Updates compilation instructionsVincent Bénony
2016-01-06IOS: Implements scalersVincent Bénony
2016-01-06IOS: Scales the GUI for the iPad ProVincent Bénony
2016-01-06IOS: Better resolution handlingVincent Bénony
2016-01-06IOS: Removes a global variableVincent Bénony
2016-01-06IOS: Fixes memory leakVincent Bénony
2016-01-06IOS: Move declarations in the common header fileVincent Bénony
2016-01-06IOS: Avoid subclassing UIApplication, and handle multitaskingVincent Bénony
2016-01-06IOS: Wrong deallocator calledVincent Bénony
2016-01-06IOS: Renames iOS7 classes to avoid confusionVincent Bénony
2016-01-06IOS: Removes new generic syntax to be able to compile with older clang toolchainVincent Bénony
2016-01-06IOS: Updates compilation instructionsVincent Bénony
2016-01-06IOS: Create two targets for old iPhone (iOS <= 6) and new one (iOS >= 7)Vincent Bénony
The "iphone" backend is the support for the old iPhones. The "ios7" backend is for the new iPhones.
2016-01-06IOS: Remove extra commaVincent Bénony
2016-01-06IOS: Fixes a typoVincent Bénony
2016-01-06ISO: Updates instructions for command line compilationVincent Bénony
2016-01-06IOS: Clean the path of the Savegames directoryVincent Bénony
2016-01-06IOS: Fixes a crash on startup on iOS 7Vincent Bénony
2016-01-06IOS: Replaces spaces with tabsVincent Bénony
2016-01-06IOS: Updates the compilation instructionsVincent Bénony
2016-01-06IOS: Moves the compilation instructions in the platform directoryVincent Bénony
2016-01-06IOS: Fixes tabsVincent Bénony
2016-01-06IOS: Fixes rotation and event handlingVincent Bénony
2016-01-06IOS: Uses the chroot filesystemVincent Bénony
2016-01-06IOS: Adds a getter for the touchpad modeVincent Bénony
2016-01-06IOS: Fixes the virtual keyboardVincent Bénony
2016-01-06IOS: Added a chroot like filesystemVincent Bénony
This is needed because it is not possible to keep absolute paths to the iOS document directory, because a part of its name change between each installation / update.
2016-01-01ALL: Update copyright yearsEugene Sandulenko
2015-12-18SDL: Implement initial support for resizable window with SDL2.Johannes Schickel
The code is disabled for now.
2015-12-16OSX: Fix menus when using SDL2Thierry Crozat
We remove the menus added by SDL before inserting our own menus, but the code assumed that there were two SDL generated menus. SDL2 actually adds three menus. So the new code makes no assumptions on the number of menus so that it works with both SDL1.2 and SDL2. Also fix an issue on OS X 10.4 and earlier that caused the app menu to be nameless.
2015-12-15PS3: Set the default audio output rate to 48000 HzBastien Bouclet
SDL does an awful job at resampling 44100 -> 48000 Hz
2015-12-15PS3: Remove the SDL2 mixer manager.Bastien Bouclet
It was only used by the PS3 backend, and the standard SDL mixer was fixed to work in the PS3 case.
2015-12-15SDL: Ensure the audio sample format is supportedBastien Bouclet
When SDL returns an unsupported audio sample format, ask SDL to do resampling to the one ScummVM expects. This is needed for the PS3 which natively only supports 32 bits floating point as a sample format.