Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-02-11 | OPENGL: Refactor texture instantiation. | Johannes Schickel | |
2014-02-11 | OPENGL: Rename notifyContextChange to notifyContextCreate. | Johannes Schickel | |
2014-02-11 | TIZEN: Notify OpenGL manager about context destruction. | Johannes Schickel | |
2014-02-11 | OPENGLSDL: Notify OpenGL manager about context destruction. | Johannes Schickel | |
2014-02-11 | OPENGL: Add notification function about context destruction. | Johannes Schickel | |
2014-02-11 | OPENGL: Release old texture name before creating a new one. | Johannes Schickel | |
This prevents any texture name leaks (and thus memory leaks) on recreateInternalTexture calls. | |||
2014-01-27 | ANDROID: Fix a race condition | Joel Teichroeb | |
setSurface is done in a different thread than the one that starts the scummvm main. The main thread would then wait until the setSurface thread notifies. The setSurface thread would notify before it actually calls setSurface, meaning if the thread is preemted before calling setSurface, initSurface will assert, causing the app to crash. | |||
2014-01-26 | WII: Add missing dvd interface header for Gamecube build. | D G Turner | |
2014-01-25 | WII: Another fix for Gamecube build. Corrected Disc Interface object. | D G Turner | |
2014-01-25 | WII: Fix Gamecube build. Missing ifdef guard for Wii DVD interface. | D G Turner | |
2014-01-24 | Merge remote-tracking branch 'local/master' | Max Lingua | |
2014-01-24 | MAEMO: Get rid of superfluous cast. | Johannes Schickel | |
2014-01-24 | WINCE: Attempt to fix WinCE compilation. | Johannes Schickel | |
2014-01-23 | PS2: Added README.PS2 | Max Lingua | |
2014-01-23 | PS2: Added compact Makefile.ps2.dev for debug | Max Lingua | |
2014-01-23 | PS2: Made it quieter unless -DLOGORRHEIC is set | Max Lingua | |
2014-01-23 | PS2: Init Ps2Input after USB drivers are loaded | Max Lingua | |
2014-01-23 | PS2: Improved support for profiling (gprof) build | Max Lingua | |
2014-01-23 | PS2: commented "offending" free in startIrxModules | Max Lingua | |
TODO: investigate stack corruption due to double free TODO: review modules loader fallback logic | |||
2014-01-23 | PS2: Support for latest SDK with -D__NEW_PS2SDK__ | Max Lingua | |
2014-01-23 | Merge branch 'master' of git://github.com/scummvm/scummvm | Max Lingua | |
2014-01-23 | Merge pull request #409 from lordhoto/rtti | Johannes Schickel | |
Enable RTTI and clean up the code by exploiting the availability of dynamic_cast. | |||
2014-01-23 | ANDROID: Add 32bpp support. | Alyssa Milburn | |
We still prefer 16bpp for performance reasons. | |||
2014-01-22 | AMIGAOS4: Clarify virtual fs root node | Willem Jan Palenstijn | |
2014-01-22 | AMIGAOS4: Allow getParent() to work for non-directories | Willem Jan Palenstijn | |
2014-01-22 | AMIGAOS4: Make isReadable return false for non-existent files | Willem Jan Palenstijn | |
This also properly initializes _bIsValid for non-existent files. For consistency, isWritable() is changed analogously to isReadable(), even though it should not lead to changes in behaviour. | |||
2014-01-21 | OPENGL: Properly query for OpenGL errors. | Johannes Schickel | |
There might be various error flags and we need to clear all of them to get precise error results. Thus, we need to call glGetError in a loop to achieve that. | |||
2014-01-21 | Merge pull request #421 from lordhoto/taskbar-cleanup | Johannes Schickel | |
BUILD: Taskbar Cleanup/Fixes | |||
2014-01-21 | Merge pull request #413 from AReim1982/master | David Turner | |
WII: Implement changes needed by DevKitPPC R26 and later | |||
2014-01-21 | BUILD: Rename libunity support variable to "USE_UNITY" instead of ↵ | Johannes Schickel | |
"USE_TASKBAR_UNITY". This makes it consistent with other library support variables. | |||
2014-01-21 | WII: Implement changes needed by DevKitPPC R26 and later | AReim1982 | |
This changes makes ScummVM compilable with newer versions of DevKitPPC. ScummVM can be linked against the original libogc and libfat. That makes some newer WiiMotes work, improves audio-/video-playback and contains various improvements. | |||
2014-01-19 | PS2: added missing default engines to Makefile.ps2 | Max Lingua | |
2014-01-18 | PS2: do not assume _tvMode and _gfxMode are init 0 | Max Lingua | |
2014-01-18 | PS2: reverted createPixelFormat to _overlayFormat | Max Lingua | |
<1555> alpha is otherwise broken with classic theme | |||
2014-01-18 | PS2: converted malloc(x) -> memalign(64, x) | Max Lingua | |
2014-01-18 | PS2: ps2pad.cpp - fixed duplicate switch case | Max Lingua | |
2014-01-18 | PS2: support for different gfx modes | Max Lingua | |
2014-01-18 | PS2: added [PlayStation2] section to scummvm.ini | Max Lingua | |
2014-01-18 | PS2: modular IRX drivers loading | Max Lingua | |
2014-01-18 | PS2: enhanced Makefile.ps2 (incl. modules & debug) | Max Lingua | |
2014-01-18 | PS2: removed plugins cksum deps on build time | Max Lingua | |
2014-01-18 | PS2: removed plugins cksum deps on build time | Max Lingua | |
2014-01-18 | PS2: commented out unused Gs2dScreen::tvMode | Max Lingua | |
2014-01-18 | PS2: use createPixelFormat for overlay format | Max Lingua | |
2014-01-18 | PS2: renamed animThread -> playAnim to avoid shadowing | Max Lingua | |
2014-01-18 | PS2: Ps2Pad::initPad added case STAT_NONE | Max Lingua | |
2014-01-18 | PS2: fixed tabs and alignment | Max Lingua | |
2014-01-18 | PS2: added missing casts | Max Lingua | |
2014-01-18 | PS2: used C++ const_cast<...> where appropriate | Max Lingua | |
2014-01-18 | PS2: cleaned cast (X*) -> (X *) | Max Lingua | |