Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-10-15 | BACKENDS: Constify PaletteManager::grabPalette implementations | Colin Snover | |
2016-01-07 | IPHONE: Make includes match our style. | Johannes Schickel | |
2016-01-07 | IOS: Renames a macro | Vincent Bénony | |
2016-01-06 | IOS: 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-06 | IOS: Remove extra comma | Vincent Bénony | |
2016-01-06 | IOS: Fixes a typo | Vincent Bénony | |
2016-01-06 | ISO: Updates instructions for command line compilation | Vincent Bénony | |
2016-01-06 | IOS: Clean the path of the Savegames directory | Vincent Bénony | |
2016-01-06 | IOS: Fixes a crash on startup on iOS 7 | Vincent Bénony | |
2016-01-06 | IOS: Replaces spaces with tabs | Vincent Bénony | |
2016-01-06 | IOS: Updates the compilation instructions | Vincent Bénony | |
2016-01-06 | IOS: Moves the compilation instructions in the platform directory | Vincent Bénony | |
2016-01-06 | IOS: Fixes tabs | Vincent Bénony | |
2016-01-06 | IOS: Fixes rotation and event handling | Vincent Bénony | |
2016-01-06 | IOS: Uses the chroot filesystem | Vincent Bénony | |
2016-01-06 | IOS: Adds a getter for the touchpad mode | Vincent Bénony | |
2016-01-06 | IOS: Fixes the virtual keyboard | Vincent Bénony | |
2014-06-05 | IPHONE: Scale input according to content scale factor. | Johannes Schickel | |
This hopefully fixes input positions in retina devices. The idea is stolen from QT: https://qt.gitorious.org/qt/qt/source/0726127285413829f58618b5b82fb3e2da0c3a74:src/plugins/platforms/uikit/quikitwindow.mm#L261-296 Complicated way to retrieve scale's return value properly is taken from: https://stackoverflow.com/questions/3130464 We sadly can't use the cleaner solution since we don't want to require a newer SDK... | |||
2014-06-04 | IPHONE: Remove superflous semicolon. | Johannes Schickel | |
2014-02-18 | IPHOME: Make GPL headers consistent in themselves. | Johannes Schickel | |
2013-08-07 | IPHONE: Fix accidental double free. | Johannes Schickel | |
This was a copy&paste error. I also adapted the comment to be more clear. | |||
2013-08-06 | IPHONE: Do not access Surface::pixels directly. | Johannes Schickel | |
2013-08-03 | IPHONE: Take advantage of Surface::getPixels. | Johannes Schickel | |
2013-05-17 | RECORDER: Implement Events Recorder | Eugene Sandulenko | |
2013-01-14 | IPHONE: Initialize the palettes on startup. | Johannes Schickel | |
This hopefully fixes the occasional odd color flashes on startup. | |||
2013-01-14 | IPHONE: Recreate mouse texture on palette changes when needed. | Johannes Schickel | |
This fixes the color of the cursor in the Eye of the Beholder menu. | |||
2012-10-12 | IPHONE: Add support for "retina" displays. | Johannes Schickel | |
Thanks to peres for testing this. | |||
2012-10-10 | IPHONE: Fix cursor artifacts when linear filterting is used. | Johannes Schickel | |
We need to set a proper texture coordinate wrap parameter for this. | |||
2012-09-26 | JANITORIAL: Remove trailing whitespaces. | Johannes Schickel | |
Powered by: git ls-files "*.cpp" "*.h" "*.m" "*.mm" | xargs sed -i -e 's/[ \t]*$//' | |||
2012-06-20 | IPHONE: Replace OverlayColor uses with uint16. | Johannes Schickel | |
2012-06-20 | Merge pull request #246 from lordhoto/osystem-void-buffers | Johannes Schickel | |
OSYSTEM: Use void buffers for screen/overlay/mouse buffers and proper pitch values for overlay code | |||
2012-06-16 | ALL: Let overlay related methods in OSystem take a void * and use a proper ↵ | Johannes Schickel | |
pitch values. This is a first step to get rid of OverlayColor, which is a requirement for proper 4Bpp overlay support. | |||
2012-06-16 | BACKENDS: Make OSystem::setMouseCursor take a "const void *" buffer. | Johannes Schickel | |
This is mainly for consistency with OSystem::copyRectToScreen. | |||
2012-06-16 | BACKENDS: Let copyRectToScreen take a "const void *" instead of "const byte ↵ | Johannes Schickel | |
*" as buffer. This removes the need to convert the parameter to copyRectToScreen to "const byte *", which is commonly used in games, which use Graphics::Surface to store their graphics data. | |||
2012-06-09 | COMMON: Add tm_wday to our TimeDate struct | Matthew Hoops | |
Did not adapt bada or ps2 backends as I'm not sure how they should be handled | |||
2012-06-03 | ALL: Replace cursorTargetScale in OSystem API with a simple "do not scale" ↵ | Johannes Schickel | |
logic. All uses of the old target scale API actually wanted to disallow scaling of the mouse cursor. This commit adapts our API to this and thus simplifies backend implementations. Some backends, most notable the Wii and Android, did some implementation of the cursor target scale, which I didn't adapt yet. I added a TODO for the porters there. | |||
2012-04-02 | IPHONE: Use InternalEvent directly. | Johannes Schickel | |
2012-04-02 | IPHONE: Move event fetching implementation to iPhoneView. | Johannes Schickel | |
2012-04-02 | IPHONE: Protect access to the event list via a mutex. | Johannes Schickel | |
2012-04-02 | IPHONE: Use Common::List to store the event queue. | Johannes Schickel | |
2012-03-29 | IPHONE: Add some more debug printfs to graphics related OSystem functionality. | Johannes Schickel | |
2012-03-05 | IPHONE: Send dealloc message to iPhoneView's superclass at the end of dealloc. | Johannes Schickel | |
2012-03-05 | IPOHNE: Move touch related global variables to iPhoneView. | Johannes Schickel | |
2012-03-05 | IPHONE: Prefix all global variables with "g_". | Johannes Schickel | |
2012-02-29 | IPHONE: Fall back to CLUT8 in case a non-supported screen mode is set up. | Johannes Schickel | |
This makes the iPhone backend conform with the 16bpp API and thus no longer causes assertions to fail in case the client code tries to set up an unsupported game screen format. | |||
2012-02-26 | IPHONE: Let hi-color games directly draw onto the screen texture buffer. | Johannes Schickel | |
This avoids an unecessary copying step from the framebuffer to the texture buffer. | |||
2012-02-26 | IPHONE: Implement 16bpp color support. | Johannes Schickel | |
This feature is currently disabled by default. | |||
2012-02-25 | IPHONE: Get rid of _gameScreenRaw, instead use _framebuffer internally. | Johannes Schickel | |
2012-02-25 | IPHONE: Implement very basic GFX transaction support. | Johannes Schickel | |
This allows for AR ratio correction changes to take place, even when the AR setting is set after initSize for example. | |||
2012-02-24 | IPHONE: Move aspect ratio settings to VideoContext. | Johannes Schickel | |