aboutsummaryrefslogtreecommitdiff
path: root/engines/toltecs/microtiles.cpp
AgeCommit message (Collapse)Author
2014-03-02TOLTECS: Reduce a variable scope, move a variable to booleanStrangerke
2014-02-18TOLTECS: Make GPL headers consistent in themselves.Johannes Schickel
2012-11-19TOLTECS: Remove unused, but set, variable, start.D G Turner
2012-09-26JANITORIAL: Remove trailing whitespaces.Johannes Schickel
Powered by: git ls-files "*.cpp" "*.h" "*.m" "*.mm" | xargs sed -i -e 's/[ \t]*$//'
2011-12-05TOLTECS: Removed two goto statementsFilippos Karapetis
2011-11-20TOLTECS: Fix Compilation With Latest Git Master.David Turner
2011-11-20TOLTECS: Added ScummVM headersFilippos Karapetis
2011-11-20TOLTECS: Added some FIXME commentsFilippos Karapetis
2011-11-20TOLTECS: A lot of changes in the graphics code:Benjamin Haisch
- Optimized drawing code; now only items (sprites, text, screen masks) which have changed from the previous frame are redrawn, this speeds up things a lot - Implemented dirty rectangles using a microtile array - The previously committed Microtile Array implementation from SEL seemed buggy so I wrote my own version which works nicely so far (and is less code and GPL), only MicroTileArray::getRectangles uses parts from the old version, this will be changed later - One known bug related to dirty rectangles remains: Sometimes the background isn't restored correctly and gfx artifacts are visible
2011-11-20TOLTECS: - Added menu system prototype (may change later)Benjamin Haisch
- Added movie player (still incomplete, sound is not yet implemented) Both are not yet hooked to the engine. - Added code for microtile arrays (from the SEL - Simple DirectMedia Layer Extension Library project), under the LGPL This will be used as dirty rectangle "manager". This is experimental for now, it may be removed later.