Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-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-05-31 | ALL: Correct spelling of "Mac OS X" in various places | Max Horn | |
2012-05-15 | MIDI: add sndio midi backend | Jonathan Gray | |
New sndio MIDI backend for OpenBSD written by Alexandre Ratchov. Tested with an external MT-32 and fluidsynth. | |||
2012-05-03 | Merge pull request #213 from fuzzie/leak-fixes | Johannes Schickel | |
The pull request in question is "Memory leak fixes". | |||
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-28 | OPENGL: Don't leak surfaces. | Alyssa Milburn | |
2012-03-20 | GRAPHICS: Rewrite ImageDecoder to have an improved API | Matthew Hoops | |
The new bitmap decoder class is based off the Mohawk one, and now has 8bpp decoding capability. | |||
2012-03-17 | JANITORIAL: Remove +x from files, which should not be executable. | Christoph Mallon | |
2012-03-17 | ALL: Make use of defined() for the preprocessor consistent. | Johannes Schickel | |
This does not change the use of defined for some NDS source files, since they seem to be (based on?) third party code. | |||
2012-03-17 | Merge pull request #202 from tsoliman/keymapper-nonkey-inputs | Eugene Sandulenko | |
KEYMAPPER: Add Gesture Support | |||
2012-03-13 | JANITORIAL: Remove unnecessary empty default constructors/destructors. | Christoph Mallon | |
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-03-02 | KEYMAPPER: Add delays for *UP events coming from non-keys | Tarek Soliman | |
Delayed entries are in a queue where each entry stores how many milliseconds should pass based on the last entry. | |||
2012-03-02 | KEYMAPPER: Map non-key custom input events | Tarek Soliman | |
This also makes the keymapper be in charge of keymapping logic | |||
2012-03-02 | KEYMAPPER: Add non-key inputs to HardwareInput | Tarek Soliman | |
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-28 | MAEMO: Define only special keys to Keymapper | Tarek Soliman | |
Also get rid of static tables in headers. | |||
2012-02-28 | KEYMAPPER: HardwareInputSet now has defaults | Tarek Soliman | |
Ports can add additional special keys. SDL no longer carries the static tables. Default behavior unchanged: HardwareInputSet() still gives an empty one. | |||
2012-02-28 | KEYMAPPER: Move HardwareInputSet implementation out of header file | Tarek Soliman | |
2012-02-27 | KEYMAPPER: Fix WebOS compile | Tarek Soliman | |
2012-02-27 | KEYMAPPER: Rename EVENT_CUSTOM_BACKEND to EVENT_CUSTOM_BACKEND_ACTION | Tarek Soliman | |
2012-02-27 | KEYMAPPER: Rename HardwareKey to HardwareInput | Tarek Soliman | |
2012-02-26 | NDS: Fix build after common util.h split. | D G Turner | |
2012-02-26 | COMMON: Move Language and Platform functionality into separate files | Max Horn | |
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-25 | AUDIO: (Windows) fix issue with non-unique MIDI device names | athrxx | |
This should fix the issue mentioned here: http://forums.scummvm.org/viewtopic.php?t=11255 Apparently Windows doesn't generate unique names for MIDI devices of the exact same type. I do not know whether this could be a problem on other backends, too. | |||
2012-02-24 | MAEMO: Move static table out of .h file | Tarek Soliman | |
Thanks fuzzie & LordHoto for pointing this out | |||
2012-02-24 | IPHONE: Move aspect ratio settings to VideoContext. | Johannes Schickel | |
2012-02-24 | Merge pull request #197 from phoenixtail26/cleanedARCorrection. | Johannes Schickel | |
This is a manual merge with some conflict fixups. Conflicts: backends/platform/iphone/iphone_video.mm | |||
2012-02-24 | IPHONE: Only update on screen mouse coordinates when it's needed. | Johannes Schickel | |
2012-02-24 | IPHONE: Cleanup mouse cursor handling slightly. | Johannes Schickel | |
Now the scaling etc. will be precalculated instead of being done on every frame. | |||
2012-02-24 | IPHONE: Clean up mouse texture coordinate handling. | Johannes Schickel | |
2012-02-24 | IPHONE: Move some global variables to iPhoneView. | Johannes Schickel | |
2012-02-24 | IPHONE: Add a mouse texture buffer surface to VideoContext. | Johannes Schickel | |
2012-02-23 | IPHONE: Fix mouse coordinates for hi res games. | Johannes Schickel | |
2012-02-23 | IPHONE: Directly use the game screen's texture buffer. | Johannes Schickel | |
This gets rid of another intermediate buffer. | |||
2012-02-23 | IPHONE: Directly use the overlay's texture buffer instead of another ↵ | Johannes Schickel | |
intermediate buffer. | |||
2012-02-23 | IPHONE: Move screen and overlay texture buffer to VideoContext. | Johannes Schickel | |
2012-02-23 | IPHONE: Add a constructor to VideoContext. | Johannes Schickel | |
2012-02-23 | IPHONE: Add aspect ratio correction to iPhone | Gavin Hayler | |