Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-06-20 | renamed ENABLE_16BIT define to more accurate ENABLE_RGB_COLOR | Jody Northup | |
svn-id: r41696 | |||
2009-06-16 | Corrected oversight in earlier ifdef simplification which leads to ↵ | Jody Northup | |
compilation failure if ENABLE_16BIT is not defined. svn-id: r41581 | |||
2009-06-16 | Declared getBestFormat in OSystem base class, and implemented in SDL backend. | Jody Northup | |
svn-id: r41580 | |||
2009-06-15 | Added kUnsupportedColorMode error code brought Scumm engine and SDL backend ↵ | Jody Northup | |
into compliance with API outlined in http://scummvmupthorn09.wordpress.com/2009/06/14/how-this-is-going-to-work/ Provided convenient Graphics::PixelFormat constructors for ColorMode enums, and bitformat integers. Removed last vestiges (I think) of initial cursor hack. svn-id: r41539 | |||
2009-06-13 | Fixed cursor code to keep track of cursor formats so that ThemeEngine and/or ↵ | Jody Northup | |
GuiManager cursors will render properly over the game (on spacebar hit, for instance) svn-id: r41491 | |||
2009-06-12 | Unfinished proof of concept regarding my compromise with LordHoto in IRC. | Jody Northup | |
svn-id: r41464 | |||
2009-06-11 | Renamed Graphics::ColorFormat to Graphics::ColorMode, streamlined enum by ↵ | Jody Northup | |
removing order section and temporarily removing kFormatARGB1555 Converted cursor code to make use of _screenFormat, instead of a parameter passed directly to it by the engine. Adjusted scumm engine to account for these changes. This should probably have been two separate commits, but the changes concern the same files... svn-id: r41443 | |||
2009-06-10 | Point to the Cursor and AudioCD Managers to help engine authors following ↵ | Jordi Vilalta Prat | |
the right path. svn-id: r41433 | |||
2009-06-10 | Extend documentation for "kFeatureCursorHasPalette". | Johannes Schickel | |
svn-id: r41430 | |||
2009-06-10 | SDL backend now dynamically generates 8 or 16-bit color surface depending on ↵ | Jody Northup | |
engine request (using ad-hoc format). svn-id: r41416 | |||
2009-06-09 | Laying the foundation for preliminary bitdepth negotiation. (No ↵ | Jody Northup | |
functionality changes yet) svn-id: r41396 | |||
2009-06-06 | Corrected cursor display errors introduced by revision 41204, reimplemented ↵ | Jody Northup | |
16-bit cursor support in a less hacky, but still temporary way. svn-id: r41209 | |||
2009-06-05 | Corrected backend to be able to accept a 16-bit mouseKeyColor without overflow | Jody Northup | |
svn-id: r41194 | |||
2009-05-18 | Typo. | Johannes Schickel | |
svn-id: r40693 | |||
2009-05-10 | Keymapper: | Eugene Sandulenko | |
- Introduced new OSystem method getHardwareKeySet() with default implementation - Moved global keymap creation to base/main.cpp - Moved GUI keymap creation to gui/GuiManager.cpp - Added various safeguard checks to various keymapper methods Now it is really possible to add keymapper to all backends. svn-id: r40439 | |||
2009-02-24 | Fix my wrong comment on OSystem::updateScreen(). Now it is hopefully correct | Max Horn | |
svn-id: r38860 | |||
2009-02-24 | Add some remarks on OSystem::updateScreen() properties | Max Horn | |
svn-id: r38859 | |||
2009-02-15 | - Replace OSystem::clearScreen with OSystem::fillScreen as discussed on -devel. | Johannes Schickel | |
- Update BaseBackend and DC port to properly implement OSystem::fillScreen (now only PalmOS has to be updated). - Update all client code which relied on OSystem::clearScreen so far. svn-id: r38304 | |||
2009-01-30 | Removed default implementations of OSystem::getOverlayHeight() and ↵ | Max Horn | |
getOverlayWidth() svn-id: r36152 | |||
2009-01-30 | Document OSystem::copyRectToOverlay params more explicitly (esp. the pitch ↵ | Max Horn | |
param, which differs from that of copyRectToScreen) svn-id: r36150 | |||
2009-01-30 | Moved default implementations for various OSystem methods into a new class ↵ | Max Horn | |
BaseBackend svn-id: r36135 | |||
2009-01-23 | Renamed OSystem::openConfigFileForReading & openConfigFileForWriting to ↵ | Max Horn | |
createConfigReadStream & createConfigWriteStream, in order to make it clear that the *caller* is responsible for deleting the streams (i.e., 'owns' them) svn-id: r36013 | |||
2009-01-22 | Moved Graphics::PixelFormat into its own header file; turned RGBToColor etc. ↵ | Max Horn | |
into methods, and added an operator== svn-id: r35993 | |||
2008-12-22 | Fixed indentation and removed whitespaces at the end of line | Jordi Vilalta Prat | |
svn-id: r35481 | |||
2008-11-14 | Committed my patch #2123680 "SDL: Backend transaction / rollback support". | Johannes Schickel | |
svn-id: r35062 | |||
2008-11-06 | Got rid of OSystem::colorToRGB and RGBToColor; added implementations for ↵ | Max Horn | |
OSystem::getOverlayFormat to several ports (pending testing by the porters) svn-id: r34912 | |||
2008-11-06 | Got rid of OSystem::ARGBToColor and colorToARGB | Max Horn | |
svn-id: r34911 | |||
2008-11-03 | Committed my patch #2216641 "GRAPHICS: PixelFormat introduction". | Johannes Schickel | |
svn-id: r34875 | |||
2008-10-21 | Fixed: Broken english in System.h documentation. | Vicent Marti | |
svn-id: r34835 | |||
2008-10-13 | OSYSTEM: Removed unused getExtraThemeConfig() method (TODO: Implement a new ↵ | Max Horn | |
system which allows ports to add/remove stuff from the options dialogs) svn-id: r34794 | |||
2008-09-27 | Modified Common::SearchSet to take signed integer priorities, for ↵ | Max Horn | |
convenience (so that one can add archives with less-than-default priority) svn-id: r34659 | |||
2008-09-07 | Add a priority param to OSystem::addSysArchivesToSearchSet (still in search ↵ | Max Horn | |
for a better name ;) svn-id: r34432 | |||
2008-09-07 | Added new OSystem method addSysArchivesToSearchSet() [better name pending, ↵ | Max Horn | |
suggestions welcome] svn-id: r34424 | |||
2008-08-03 | New OSystem API for loading/storing default config file | Max Horn | |
svn-id: r33584 | |||
2008-07-30 | This time properly reverted my accidental commits of the osystem&configman ↵ | Max Horn | |
patch (I didn't mean to commit it in the first place, still waiting for any replies to my corresponding scummvm-devel mail). Sorry for messing up so badly svn-id: r33459 | |||
2008-07-30 | Fixed Win32 build, after Fingolfin's commits (probably because of the revert ↵ | Nicola Mettifogo | |
in revision 33456). svn-id: r33458 | |||
2008-07-30 | Revert my accidental commit of the OSystem changes (oops) | Max Horn | |
svn-id: r33456 | |||
2008-07-30 | Simplified advanced detector file sys scanning code | Max Horn | |
svn-id: r33455 | |||
2008-06-28 | Patch ##1956946 (Audio::Mixer internal API revision) with some tweaks | Max Horn | |
svn-id: r32828 | |||
2008-06-28 | Removed OSystem::getFilesystemFactory() default implentation, as announced | Max Horn | |
svn-id: r32824 | |||
2008-05-19 | Typo. | Johannes Schickel | |
svn-id: r32191 | |||
2008-05-15 | Removed the default OSystem::getTimeAndDate() implementation | Max Horn | |
svn-id: r32138 | |||
2008-02-23 | Replaced FilesystemFactory::makeFSFactory with a new method ↵ | Max Horn | |
OSystem::getFilesystemFactory() svn-id: r30947 | |||
2008-01-27 | Removed trailing spaces. | Jordi Vilalta Prat | |
svn-id: r30664 | |||
2008-01-05 | Grammar fix in comment for kFeatureAutoComputeDirtyRects | Paul Gilbert | |
svn-id: r30240 | |||
2008-01-05 | Fixed comment that incorrectly reversed green and blue ordering for ↵ | Paul Gilbert | |
setPalette data svn-id: r30237 | |||
2007-12-28 | Patch #1859448: Add OSystem::getTimeAndDate API | Eugene Sandulenko | |
svn-id: r30034 | |||
2007-12-22 | Document that we expect recursive mutex locking behavior | Max Horn | |
svn-id: r29952 | |||
2007-11-13 | Slightly extended/clarified two OSystem doxygen comments | Max Horn | |
svn-id: r29490 | |||
2007-10-28 | Patch v5.2 from #1752243: "backends lib patches" | Eugene Sandulenko | |
svn-id: r29283 |