Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-10-24 | WINTERMUTE: Remove unused function | Willem Jan Palenstijn | |
It calls itself, and is declared pure virtual. Thanks salty-horse. | |||
2014-08-29 | ENGINES: Fix some Doxygen comments that seem wrong. | Einar Johan Trøan Sømåen | |
2014-06-15 | WINTERMUTE: Switch to use of moved to OSystem TransparentSurface | Eugene Sandulenko | |
2014-02-28 | IMAGE: Move all ImageDecoders to image/ | Matthew Hoops | |
2014-02-19 | WINTERMUTE: Some British to American English | Strangerke | |
2014-02-18 | WINTERMUTE: Make GPL headers consistent in themselves. | Johannes Schickel | |
2014-02-16 | WINTERMUTE: Janitorial - Remove trailing spaces | Strangerke | |
2014-02-05 | WINTERMUTE: Change the copyFrom-simplifications to depend on pitch instead ↵ | Einar Johan Trøan Sømåen | |
of width. (Fix bug #6157) | |||
2014-01-22 | WINTERMUTE: Two minor formatting fixes. | Johannes Schickel | |
2014-01-21 | WINTERMUTE: Avoid using Graphics::copyFrom to copy FMV-frames. | Einar Johan Trøan Sømåen | |
copyFrom frees and reallocates the surface for every update, as long as the dimensions and format stay the same, we can do with just a memcpy. This gives a tiny improvement in the update-part of the Theora-player (on the order of a bit more than 1 second saved total in the 1:28 long J.U.L.I.A.-intro) | |||
2014-01-21 | WINTERMUTE: Special-case FMV-handling to not fill the screen with background ↵ | Einar Johan Trøan Sømåen | |
color. If we have only one thing being drawn, and that is opaque, we can skip filling the render surface with background color. This shaves another few wasted cycles of the FMV playback. (Since we now don’t have to write the entire render surface TWICE). This reduces the time spent in drawTickets() to ~60% of what it was before. | |||
2013-11-05 | WINTERMUTE: Transfer Common::Strings explicitly when saving/loading. | Einar Johan Trøan Sømåen | |
2013-11-05 | WINTERMUTE: Transfer Sint32s explicitly when saving/loading. | Einar Johan Trøan Sømåen | |
2013-10-29 | WINTERMUTE: Remove BasePlatform::setRect (replace with member-call) | Einar Johan Trøan Sømåen | |
2013-10-29 | WINTERMUTE: Remove BasePlatform::setRectEmpty (replace with member-call) | Einar Johan Trøan Sømåen | |
2013-10-09 | WINTERMUTE: Remove superfluous assignments | Willem Jan Palenstijn | |
2013-10-08 | WINTERMUTE: Fix displayTransOffset | Willem Jan Palenstijn | |
Regression from 14cb1f09c0bc2cace830eaa793227f195acb06bc. This fixes font border drawing. | |||
2013-10-07 | WINTERMUTE: Call updateScreen() every frame, even without updates. | Willem Jan Palenstijn | |
This fixes expose events with the opengl backend. | |||
2013-10-06 | WINTERMUTE: Fix typo causing tiled image corruption | Willem Jan Palenstijn | |
2013-10-06 | WINTERMUTE: Partially fix rotoscale coordinate confusion | Willem Jan Palenstijn | |
This fixes two issues: * The rendering rectangle was not rotated, causing garbage to be drawn if the rotated rectangle did not fully cover the unrotated rectangle, or sprites to be clipped in the opposite case. * The order of mirror/scale/rotation operations was inconsistent. This commit does scaling first, followed by rotation. (This is only an issue because scaling is specified separately in X and Y directions.) For now only FIXMEs are added for mirroring. | |||
2013-10-06 | WINTERMUTE: Remove outdated comment | Willem Jan Palenstijn | |
2013-10-06 | WINTERMUTE: Remove presumably outdated off-by-one correction | Willem Jan Palenstijn | |
This correction no longer seems to be necessary, and removes an off-by-one in the J.U.L.I.A. Demo main menu screen. | |||
2013-10-03 | WINTERMUTE: Update full screen on ScreenChanged | Willem Jan Palenstijn | |
This fixes the screen not updating after e.g., scaler changes. Bug #3594245. | |||
2013-10-02 | WINTERMUTE: Remove unused _drawNum | Willem Jan Palenstijn | |
2013-10-02 | WINTERMUTE: Fix regression with _skipThisFrame | Willem Jan Palenstijn | |
This broke loading in Broken Circle demo. We now reset the queue state when skipping a frame, and re-use lastFrameIter instead of keeping track of lastAddedTicket separately. | |||
2013-10-02 | WINTERMUTE: Fix regression in ticketing | Willem Jan Palenstijn | |
This caused a crash when pressing 'New Game' in the Black Circle demo. Regression from 544e4a2f49630cecbf06fe5b1e11bdbab1bdb281. | |||
2013-10-01 | WINTERMUTE: Fix up doxygen comment | Willem Jan Palenstijn | |
2013-09-30 | Merge branch 'master' into wme_rendering | Willem Jan Palenstijn | |
2013-09-30 | WINTERMUTE: Add displayTiled function to replace repeatLastDraw | Willem Jan Palenstijn | |
This avoids queueing many tickets for a UITiledImage, replacing them by a single tiled ticket. | |||
2013-09-30 | Merge branch 'refac' | Einar Johan Trøan Sømåen | |
Conflicts: engines/wintermute/graphics/transparent_surface.cpp engines/wintermute/graphics/transparent_surface.h | |||
2013-09-30 | WINTERMUTE: Remove almost unused _colorMod field | Willem Jan Palenstijn | |
The one actual use of this left-over variable was a bug breaking at least menu text color in Chivalry when dirty rects were disabled. | |||
2013-09-26 | WINTERMUTE: Cleanup | Willem Jan Palenstijn | |
2013-09-26 | WINTERMUTE: Remove ticket->_drawNum | Willem Jan Palenstijn | |
2013-09-26 | WINTERMUTE: Remove left-over asserts | Willem Jan Palenstijn | |
2013-09-26 | WINTERMUTE: Remove unnecessary loop | Willem Jan Palenstijn | |
2013-09-26 | WINTERMUTE: No longer update ticket->_drawNum | Willem Jan Palenstijn | |
2013-09-26 | WINTERMUTE: No longer use ticket->_drawNum | Willem Jan Palenstijn | |
2013-09-26 | WINTERMUTE: Remove unnecessary re-iteration | Willem Jan Palenstijn | |
2013-09-26 | WINTERMUTE: Mirror _drawNum with an iterator | Willem Jan Palenstijn | |
2013-09-26 | WINTERMUTE: Remove _tempDisableDirtyRects | Willem Jan Palenstijn | |
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: Keep _alphaMode private in TransparentSurface | 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-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 | |