Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-08-06 | OSYSTEM: Mention that our OSystem graphics API is not thread safe. | Johannes Schickel | |
Based on f621f6a5059ec619ae9ea1045548e62a27e99ab4 and the fact that our OpenGL based backends do not (and sometimes cannot easily) implement it in a thread safe manner. | |||
2011-08-06 | COMMON: Change param type of processDelayMillis to fix build. | Alyssa Milburn | |
2011-08-06 | COMMON: Corrected Previous Commit. | D G Turner | |
Common::String class is in common/str.h, not string.h... | |||
2011-08-06 | COMMON: Fix Missing Dependency In Timer Header. | D G Turner | |
This should fix the PSP build. | |||
2011-08-06 | RECORDER: Added stub for delayMillis() processing | Eugene Sandulenko | |
2011-08-06 | JANITORIAL: Remove SVN keywords | Eugene Sandulenko | |
2011-08-06 | OSYSTEM: extended installTimerProc() with timer ID parameter | Eugene Sandulenko | |
2011-08-04 | COMMON: Initialize more z_stream fields before calling inflateInit2. | Alyssa Milburn | |
The zlib documentation and examples claim this is needed, as spotted by LordHoto. | |||
2011-08-02 | Merge pull request #52 from CeRiAl/macosx-sparkle | Oystein Eftevaag | |
MACOSX: Add Sparkle support | |||
2011-07-24 | COMMON: Limited gcc specific intLog2 to gcc 3.4 or newer. | Johannes Schickel | |
Older gcc versions did not include __builtin_clz, which made the PS2 port fail to compile, since it uses 3.2.2. | |||
2011-07-24 | COMMON: Add an optimized intLog2 implementation for gcc using __builtin_clz. | Johannes Schickel | |
This is done as discussed here: https://github.com/scummvm/scummvm/commit/54f25aa84373715001c56155673fb59cfe44b573 | |||
2011-07-24 | COMMON: Let intLog2 return an int instead of uint32, since it should return ↵ | Johannes Schickel | |
-1 for 0. | |||
2011-07-19 | MACOSX/UPDATES: Streamline UpdateManager | CeRiAl | |
Moved UpdateManager related code from backends/modular-backend.* to common/system.*. Added switch --enable/disable-updates to be able to disable updates support generally. | |||
2011-07-19 | MACOSX: Add Sparkle support | CeRiAl | |
2011-07-19 | JANITORIAL: Fix MSVC warnings | Littleboy | |
- Conversion from double to float - Unary minus operator applied to unsigned type - ARRAYSIZE redefinition | |||
2011-07-19 | COMMON: Fix some formatting | Matthew Hoops | |
2011-07-19 | COMMON: Move cosine/sine tables out of header files | Matthew Hoops | |
Access is now restricted to using the getSineTable()/getCosineTable() helper functions. | |||
2011-07-19 | COMMON: Renamed Integer Log2 function from log2 to intLog2. | D G Turner | |
This avoids naming collisions with system libraries on some platforms i.e. DS, DC where the log2 is realised by macro. | |||
2011-07-19 | COMMON: Document the BitStream a bit more | Sven Hesse | |
2011-07-18 | Merge pull request #50 from clone2727/bink | clone2727 | |
Add support for Bink video to SCUMM HE | |||
2011-07-18 | COMMON: Fix comment | Matthew Hoops | |
2011-07-18 | COMMON: Update code from eos | Matthew Hoops | |
2011-07-18 | COMMON: Update class documentation to say they're now used by SCUMM | Matthew Hoops | |
2011-07-18 | COMMON: Remove USE_BINK checks from header files | Matthew Hoops | |
2011-07-13 | BUILD: Allow for disabling Bink support | Matthew Hoops | |
2011-07-06 | COMMON: Update documentation comment for TaskbarManager slot | Littleboy | |
2011-07-03 | COMMON: Remove unused vector2orientation function | Matthew Hoops | |
2011-07-02 | COMMON: Cleanup BitStream | Matthew Hoops | |
Fix mismatched new[]/free and restored a missing statement | |||
2011-07-03 | COMMON: Fix compilation when USE_HASHMAP_MEMORY_POOL is not defined. | Johannes Schickel | |
2011-07-02 | VIDEO: Add Bink video decoder | Matthew Hoops | |
Based on eos' code which is in turn based on FFmpeg's code | |||
2011-07-02 | COMMON: Add DCT math code | Matthew Hoops | |
Based on eos' code which is based on FFmpeg's code | |||
2011-07-02 | COMMON: Add RDFT math code | Matthew Hoops | |
Based on eos' code which is based on FFmpeg's code | |||
2011-07-02 | COMMON: Add an FFT math handler | Matthew Hoops | |
Based on eos' code which is based on FFmpeg's code | |||
2011-07-02 | COMMON: Add a Huffman bitstream decoder | Matthew Hoops | |
Based on eos' code | |||
2011-07-02 | COMMON: Add some simple math utilities | Matthew Hoops | |
Based on eos' code | |||
2011-07-02 | COMMON: Add a BitStream class | Matthew Hoops | |
Based on eos' BitStream | |||
2011-06-30 | ALL: Require DECLARE_SINGLETON to be used in the Common namepsace | Ori Avtalion | |
Silences the clang warning: static data member specialization of '_singleton' must originally be declared in namespace 'Common'; accepted as a C++0x extension [-Wc++0x-extensions] Wrapping "namespace Common {}" around the macro assignment causes clang to complain about a spurious semicolon, and removing the semicolon at the end of the macro causes some editors to misbehave. Changing the requirement of using the macro in one namespace (the global) to another (Common) seems a small price to pay to silence a warning. | |||
2011-06-24 | COMMON: Look for translations.dat in Theme path before using SearchMan | Thierry Crozat | |
2011-06-23 | ANALYSIS: Add static casts to is* functions | Littleboy | |
This fixes a potential problem with passing char values that would be sign-extended and yield unexpected results. See http://msdn.microsoft.com/en-us/library/ms245348.aspx | |||
2011-06-23 | COMMON: Add abort() to the list of forbidden symbols | Julien | |
2011-06-22 | COMMON: Improve loading of translations data file | Thierry Crozat | |
Now if the header of the file is not correct it continues to look for a valid file, while before if the first file found was obsolete or corrupted translation was disabled even if a valid file was present in the search path. | |||
2011-06-22 | Merge pull request #26 from Littleboy/taskbar | Eugene Sandulenko | |
Taskbar integration | |||
2011-06-21 | COMMON: Move HerculesDimensions enum to SCUMM. | Johannes Schickel | |
The enum is only used inside the SCUMM engine so it is rather pointless to keep it in common/util.h right now. Also if we really want it in some common place it should probably be better in graphics/ too. | |||
2011-06-20 | COMMON: Fix conflicting comment | Willem Jan Palenstijn | |
2011-06-20 | ALL: Remove trailing whitespaces | Max Horn | |
This tries to make our code a bit more compliant with our code formatting conventions. For future use, this is the command I used: git ls-files "*.cpp" "*.h" | xargs sed -i -e 's/[ \t]*$//' | |||
2011-06-18 | COMMON: Replace some vsnprintf/STRINGBUFLEN uses by vformat | Max Horn | |
2011-06-18 | COMMON: Add vformat() function (Common::String analog to vsprintf) | Max Horn | |
2011-06-17 | COMMON: Remove default implementation of OSystem::logMessage | Max Horn | |
2011-06-17 | Merge pull request #30 from tsoliman/configure-enhancement-warning-clean | Eugene Sandulenko | |
Configure enhancement warning clean | |||
2011-06-17 | COMMON: Make use of Common::parseBool | Max Horn | |