Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-03-11 | SCI32: Initial implementation of kRemapColors | Filippos Karapetis | |
applyRemap() is still not finished, so nothing is actually visible yet | |||
2016-03-08 | SCI: Add missing namespace comments in graphics/. | Johannes Schickel | |
2016-03-08 | SCI: Spacing | Filippos Karapetis | |
2016-03-07 | SCI32: Add unnecessary micro-optimisation to palette merging code | Colin Snover | |
2016-03-07 | SCI32: Fix palette color overflow | Colin Snover | |
2016-03-07 | SCI32: Enable GfxPalette32::cycleAllPause | Colin Snover | |
This is used by the Mr Soylent machines in SQ6 (e.g. room 370). | |||
2016-02-18 | SCI: Minor cleanup | Colin Snover | |
1. Reorder member initialisations to match class member order 2. Use #pragma mark instead of comments for annotating sections 3. Remove useless >=0 checks on unsigned types | |||
2016-02-19 | SCI: Use American English, like we do in other parts of ScummVM | Filippos Karapetis | |
This replaces "colour" to "color" | |||
2016-02-18 | SCI: Fix palette equality check | Colin Snover | |
2016-02-18 | SCI: Implement accurate renderer architecture for SCI32 | Colin Snover | |
2016-02-14 | SCI: Proper initialization. | Eugene Sandulenko | |
There is no guarantee of initialization order in the constructor declaration, thus corss references are not a good idea. | |||
2016-01-15 | SCI: Fix usage of override functions and silence a warning | Filippos Karapetis | |
2016-01-14 | SCI: Minor clean-ups to comments and null pointer values | Colin Snover | |
2016-01-14 | SCI: Implement SCI32 kPalette findColor and matchColor | Colin Snover | |
It seems that findColor is used only by kPalette, and matchColor is used only by Remap. | |||
2016-01-14 | SCI: Implement SCI32 kPalVary and kPalette setFade | Colin Snover | |
This also fixes kPalCycle signatures to be more accurate. | |||
2016-01-08 | SCI: Fix the math in applyFade(), and simplify setFade() | Filippos Karapetis | |
2016-01-08 | SCI: *Really* fix the logic in applyFade() | Filippos Karapetis | |
Thanks wjp | |||
2016-01-08 | SCI: Fix the logic in applyFade() | Filippos Karapetis | |
Note that this is still unused, as it is normally called from kSetShowStyle() | |||
2016-01-08 | SCI: Renamed one more function name to conform to our guidelines | Filippos Karapetis | |
2016-01-08 | SCI: Make GfxPalette32 conform to out formatting guidelines | Filippos Karapetis | |
We do not prepend underscores to private class functions | |||
2016-01-08 | SCI: SCI32 palette cyclers are disjoint, so use a single palette copy | Filippos Karapetis | |
2016-01-08 | SCI: Simplify the SCI32 palette cycling code | Filippos Karapetis | |
2016-01-08 | SCI: Fix compilation | Filippos Karapetis | |
2016-01-07 | SCI32: Add initial support for palette cycling (kPalCycle) and fading (kPalFade) | Colin Snover | |
Graphics palette code was rewritten between SCI1 and SCI2, so SCI32 palette engine code has been moved to a separate GfxPalette32 class. |