Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-09-26 | WINTERMUTE: Remove ticket batching | Willem Jan Palenstijn | |
2013-09-23 | WINTERMUTE: Pass blendMode to blit() in RenderTicket. | Tobia Tesan | |
2013-09-21 | WINTERMUTE: Make some members of UIObject private | Tobia Tesan | |
2013-09-21 | WINTERMUTE: Keep attributes in UIWindow private | Tobia Tesan | |
2013-09-21 | WINTERMUTE: Keep _alphaMode private in TransparentSurface | Tobia Tesan | |
2013-09-18 | WINTERMUTE: Cast rotate in base_sub_frame | Tobia Tesan | |
2013-09-18 | WINTERMUTE: Cast zoom inside display(Trans?)Zoom | Tobia Tesan | |
2013-09-12 | Merge pull request #387 from tobiatesan/trim_arguments | Eugene Sandulenko | |
WINTERMUTE: Remove useless Rect extra argument from fadeToColor. | |||
2013-09-08 | WINTERMUTE: Swap dpi and font-height to be the right-way around. | Einar Johan Trøan Sømåen | |
2013-09-05 | WINTERMUTE: Disambiguate empty and NULL strings when saving | Willem Jan Palenstijn | |
The string stored is now strlen(s)+1, with length 0 indicating NULL. Increment savegame version for this new format. Old savegames are fixed by assuming VAL_STRING should never be NULL. | |||
2013-09-05 | WINTERMUTE: Don't clean up _scripts mid-iteration | Willem Jan Palenstijn | |
Scripts executing from ScEngine::tick() can call ScEngine::unbreakableTick() via scCallMethod("SaveGame") and applyEvent("BeforeSave"). This recursive execution could cause finished scripts being removed from _scripts while ScEngine::tick() is still iterating over that array. | |||
2013-08-29 | WINTERMUTE: Remove useless Rect extra argument from fadeToColor. | Tobia Tesan | |
It is not used anywhere, and Mnemonic has confirmed that the original engine does NOT support anything but full screen fades. | |||
2013-08-27 | WINTERMUTE: Remove duplicate code | Willem Jan Palenstijn | |
2013-08-27 | WINTERMUTE: Simplify string matching | Willem Jan Palenstijn | |
2013-08-26 | WINTERMUTE: Fix and clean up BaseSurfaceOSystem::finishLoad() | Willem Jan Palenstijn | |
This fixes a couple of cases which fell through the cracks of the previous chain of conditions, including 16bpp images and 32bpp images without alpha. The latter partially fixes bug #3600667. | |||
2013-08-24 | WINTERMUTE: Fix warning | Willem Jan Palenstijn | |
2013-08-20 | WINTERMUTE: Add binary alpha-blitting. | Einar Johan Trøan Sømåen | |
For now, no RLE, or anything, but the infrastructure for it is put in place here. | |||
2013-08-20 | WINTERMUTE: Change pixel-format to RGBA. | Einar Johan Trøan Sømåen | |
2013-08-20 | WINTERMUTE: Avoid doing alpha-blits when image doesn't have alpha. | Einar Johan Trøan Sømåen | |
Also detect images with only binary alpha. | |||
2013-08-19 | WINTERMUTE: Don't use a lookup table for alpha | Willem Jan Palenstijn | |
This gives a drawTickets() speed increase of about 10% in the JULIA demo (on a core i7 920). | |||
2013-08-16 | WINTERMUTE: Fix computation of _renderRect. | Tobia Tesan | |
This reverts the changes in 4cf1d671. Fixes the "notebook bug" - i.e. the notebook being only partially drawn - in Dirty Split. | |||
2013-08-16 | WINTERMUTE: Fix (still disabled) modTargetRect logic | Willem Jan Palenstijn | |
Width and height were computed incorrectly. Also, the shift by _renderRect is not necessary since that was to compensate for the coordinate translation done by the original SDL_RenderSetViewport, which we don't perform. | |||
2013-08-13 | WINTERMUTE: Be explicit when storing Floats in savegames. | Einar Johan Trøan Sømåen | |
2013-08-13 | WINTERMUTE: Add atleast some comments to the renderTicket-system. | Einar Johan Trøan Sømåen | |
2013-08-09 | WINTERMUTE: Fix uninitialized scalar field (CID1060922) | Einar Johan Trøan Sømåen | |
2013-08-07 | Merge pull request #365 from lordhoto/protected-pixels | Johannes Schickel | |
Make Graphics::Surface::pixels protected. | |||
2013-08-04 | WINTERMUTE: Fix end of namespace comments. | Johannes Schickel | |
2013-08-03 | WINTERMUTE: Take advantage of Surface::getPixels. | Johannes Schickel | |
2013-08-03 | WINTERMUTE: Prefer getBasePtr over direct Surface::pixels access. | Johannes Schickel | |
2013-08-01 | Merge pull request #354 from tobiatesan/wintermute_rotozoom_3 | Einar Johan Trøan Sømåen | |
WINTERMUTE: Wintermute rotozoom 3 | |||
2013-08-01 | WINTERMUTE: s/255,255,255,255/kDefaultMod/ | Tobia Tesan | |
2013-08-01 | WINTERMUTE: FActor out TransformStruc initialization in repeatLastDraw loop | Tobia Tesan | |
2013-08-01 | WINTERMUTE: zoom parameter in display*** is now integer | Tobia Tesan | |
2013-08-01 | WINTERMUTE: Fix type-related warnings in base_surface_osystem.cpp | Tobia Tesan | |
2013-08-01 | WINTERMUTE: #define to const for TransformStruct defaults | Tobia Tesan | |
2013-08-01 | WINTERMUTE: Remove single-argument zoom, rename mirrorX => getMirrorX() in ↵ | Tobia Tesan | |
transform_struct.h | |||
2013-08-01 | WINTERMUTE: Remove redeclaration in render_ticket.cpp | Tobia Tesan | |
2013-08-01 | WINTERMUTE: Use Rect::width() and height() in base_surface_osystem.cpp | Tobia Tesan | |
2013-08-01 | WINTERMUTE: TransformStruct by reference in ↵ | Tobia Tesan | |
engines/wintermute/base/gfx/osystem/base_render_osystem.h | |||
2013-08-01 | WINTERMUTE: Fix alpha bug in BaseRenderOSystem::fadeToColor | Tobia Tesan | |
Introduced in 37b1ff3, broke fade-in/fade-outs | |||
2013-08-01 | WINTERMUTE: Remove set[Color|Alpha]Mod altogether | Tobia Tesan | |
2013-08-01 | WINTERMUTE: Pass structs by const reference | Tobia Tesan | |
2013-08-01 | WINTERMUTE: Constants | Tobia Tesan | |
2013-08-01 | WINTERMUTE: s/*transform/const &transform/ | Tobia Tesan | |
2013-08-01 | WINTERMUTE: Replace normalization loop with if() for legibility | Tobia Tesan | |
2013-08-01 | WINTERMUTE: Use constants from transform_tools for consistency | Tobia Tesan | |
2013-08-01 | WINTERMUTE: Reinstate rgbaMod comparisons for compare-tickets | Tobia Tesan | |
2013-08-01 | WINTERMUTE: Deprecate setAlphaMod, setColorMod | Tobia Tesan | |
2013-08-01 | WINTERMUTE: Rename rotate() -> rotoscale() for consistency | Tobia Tesan | |
2013-08-01 | WINTERMUTE: *transform as pointer in transform_tools | Tobia Tesan | |