Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-11-19 | PSP: Remove tabs from README.PSP. | Johannes Schickel | |
svn-id: r54386 | |||
2010-11-19 | COMMON: Split common/stream.h into several headers | Max Horn | |
svn-id: r54385 | |||
2010-11-19 | PSP: Update README.PSP.in with the latest changes to README.PSP. | Johannes Schickel | |
svn-id: r54384 | |||
2010-11-19 | SYMBIAN : Updated for proper FORBIDDEN handling, added cdaudio support ↵ | Lars Persson | |
needed, updated version nr svn-id: r54378 | |||
2010-11-19 | SYMBIAN : Remove Symbian FatalError implementation (not really used anymore ↵ | Lars Persson | |
for any current symbian phone) svn-id: r54372 | |||
2010-11-18 | COMMON: Change wrapBufferedWriteStream() to always disposes wrapped stream | Max Horn | |
This is the only we need right now, and it saves a few bytes per instance. The template approach I used before has the drawback that it increases the binary size, which negates the benefit. Thanks to LordHoto for pointing this out. svn-id: r54344 | |||
2010-11-18 | PS2: Fix use of Ps2File::_sema w/o __PS2_FILE_SEMA__ guard | Max Horn | |
svn-id: r54343 | |||
2010-11-18 | BACKENDS: Implement logging API proposed by Max on -devel. | Johannes Schickel | |
This commits a slightly modified patch from my patch tracker item #3104630 "OSYSTEM: Add logging API as proposed by Max on -devel". I was not able to test compilation on Android and SamsungTV, since there is no toolchain for those on buildbot (or I was too blind to find them). svn-id: r54339 | |||
2010-11-18 | DS: Add note that ARM_ADPCM is unused (and fix a typo) | Max Horn | |
svn-id: r54335 | |||
2010-11-18 | DS: cleanup | Max Horn | |
svn-id: r54334 | |||
2010-11-18 | DS: Replace GBAMPSaveFile by DSFileStream + wrapBufferedWriteStream | Max Horn | |
svn-id: r54332 | |||
2010-11-18 | DS: Remove write buffering in DSFileStream, use wrapBufferedWriteStream instead | Max Horn | |
svn-id: r54331 | |||
2010-11-18 | DS: Avoid needlessly allocating temporary Common::String instances | Max Horn | |
svn-id: r54329 | |||
2010-11-18 | COMMON: Make implementation of Buffered*Stream classes internal | Max Horn | |
svn-id: r54326 | |||
2010-11-18 | DS: Port changes from 1.2.0 branch to trunk | Max Horn | |
svn-id: r54325 | |||
2010-11-18 | DS: Two more 'FILE' related fixes/workarounds | Max Horn | |
svn-id: r54321 | |||
2010-11-18 | DS: Add some FIXME/TODO comments on changes that need to be applied to the ↵ | Max Horn | |
DS backend svn-id: r54318 | |||
2010-11-18 | DS: Fix compilation despite use of 'forbidden' symbols | Max Horn | |
svn-id: r54317 | |||
2010-11-18 | PSP: reduced fragmentation by allocating overlay just once | Yotam Barnoy | |
svn-id: r54316 | |||
2010-11-18 | PSP: added backtracing function for debugging | Yotam Barnoy | |
Currently not used by anything. svn-id: r54312 | |||
2010-11-16 | GUI: Rename gui/GuiManager.* to gui/gui-manager.* | Max Horn | |
svn-id: r54265 | |||
2010-11-16 | GUI: Move major widgets to new directory gui/widgets | Max Horn | |
Also renamed the source/header files, now they are more closely aligned to how we rename most other source files svn-id: r54264 | |||
2010-11-16 | COMMON: Simplify DECLARE_SINGLETON macro | Max Horn | |
This makes it possible to write DECLARE_SINGLETON(foo); instead of DECLARE_SINGLETON(foo) without causing a warning about an extra semicolon. The extra semicolon helps some editors at parsing the C++ code. svn-id: r54258 | |||
2010-11-10 | PSP: changed renderer to render huge images properly | Yotam Barnoy | |
The PSP HW wasn't able to calculate the proper stretching when given the whole image size on a huge image. This is also a better way to do it because we're not overwriting tiles of the texture. svn-id: r54190 | |||
2010-11-09 | N64: correct wrong check in romfs stream code | Fabio Battaglia | |
my implementation of romfs_seek is based on lseek, not on fseek, so it returns the offset on successful completion, not 0, corrected the check in RomfsStream::seek(). svn-id: r54151 | |||
2010-11-08 | BACKENDS: Partial merge of gsoc2010-opengl: Audio CD changes only | Max Horn | |
This commit contains the AudioCDManager changes from the gsoc2010-opengl branch. The other changes in that branch are restricted to the backends directory only (plus configure). The Nintendo DS and Dreamcast ports still need to be ported over to the new Audio CD system, but that should be fairly easy to do. svn-id: r54147 | |||
2010-11-05 | WINCE: Remove tons of obsolete workaround code for 'missing' headers and funcs | Max Horn | |
svn-id: r54089 | |||
2010-11-05 | PLUGINS: Simplify ELF plugin providers & DLObject subclasses | Max Horn | |
* Remove DLObject virtual methods allocSegment and freeSegment. As long as all DLObject implementations use memalign + free to allocate/release segments, there is no point in wrapping those. This enables further simplifications. * Add TemplatedELFPlugin template class. Use this instead of explicit ELFPlugin subclasses. * Rename DLObject::discard_symtab to discardSymtab svn-id: r54082 | |||
2010-11-05 | PLUGINS: Add EM_SH to elf32.h (e_machine type used by DC backend) | Max Horn | |
svn-id: r54081 | |||
2010-11-04 | GPH: Update README-GPH to suggest even more WiKi reading. | John Willis | |
svn-id: r54064 | |||
2010-11-04 | PSP: cleaning up some stuff from plugin merge | Yotam Barnoy | |
svn-id: r54060 | |||
2010-11-04 | DS: moved build-ds.sh to DS directory. It's currently unused but has a good ↵ | Yotam Barnoy | |
way of reducing dynamic size svn-id: r54059 | |||
2010-11-04 | DC: remove multi-build of dc-provider that slipped in with plugin merge. | Yotam Barnoy | |
svn-id: r54058 | |||
2010-11-04 | COMMON: Undo changes to common/ptr.h, remove Common::ScopedPtrC | Max Horn | |
The deletePointer() method approach cannot work, as it is called by the destructor of the base class. A possible correct solution would be to enhance ScopedPtr with a "deleter" object like SharedPtr. But this seems overkill as long as we need it in only one place. svn-id: r54057 | |||
2010-11-03 | Merge from gsoc2010-plugins | Yotam Barnoy | |
This merge was extremely difficult to carry out. It wasn't entirely SVN's fault -- there were several merges to the branch that were done by hand. Please check for any issues and regressions. Also note that the DS makefile was not copied over since the "one at a time" plugin mode currently has too much fragmentation ie. it doesn't work. svn-id: r54051 | |||
2010-11-03 | Dummy file creation through SVN to allow merging gsoc plugins via mercurial | Yotam Barnoy | |
svn-id: r54046 | |||
2010-11-02 | OPENPANDORA: Add FORBIDDEN_SYMBOL_ALLOW_ALL define to enable use of ↵ | John Willis | |
forbidden symbols. svn-id: r54041 | |||
2010-11-01 | SYMBIAN: Trigger a compiler error on systems where __GCC32__ is set, instead ↵ | Max Horn | |
of producing incorrect code svn-id: r54005 | |||
2010-11-01 | COMMON: Rename String::printf() to String::format() | Max Horn | |
This is a first step towards getting rid of all uses of regular printf, fprintf, vprintf, vfprintf, puts, fputs, etc. in our codebase. The name format() reflects the purpose of the function, and parallels String.format() in Java, boost::format, and others. svn-id: r54004 | |||
2010-10-31 | GP2X: Fix warnings about unused decls | Max Horn | |
svn-id: r53982 | |||
2010-10-31 | WINCE: Fix assert() implementation | Max Horn | |
svn-id: r53980 | |||
2010-10-31 | WINCE: Code formatting | Max Horn | |
svn-id: r53979 | |||
2010-10-31 | WINCE: Enable use of forbidden symbols, cleanup | Max Horn | |
I tried to untangle the header interdependencies a bit, but this is still quite a mess. This commit also fixes some warnings. svn-id: r53978 | |||
2010-10-31 | PS2: Enable another use of forbidden symbols | Max Horn | |
svn-id: r53977 | |||
2010-10-31 | Updated with latest from trunk | Yotam Barnoy | |
svn-id: r53976 | |||
2010-10-31 | WINDOWS: Enable use of forbidden symbols | Max Horn | |
svn-id: r53972 | |||
2010-10-31 | IPHONE: Enable use of forbidden symbols | Max Horn | |
svn-id: r53971 | |||
2010-10-31 | PSP: Enable use of forbidden symbols | Max Horn | |
svn-id: r53970 | |||
2010-10-30 | PS2: Enable use of forbidden symbols | Max Horn | |
svn-id: r53969 | |||
2010-10-30 | SDL: Fix SDL plugin provider code (used e.g. by Dingux port) | Max Horn | |
svn-id: r53968 |