aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute
AgeCommit message (Collapse)Author
2013-10-09WINTERMUTE: Remove superfluous assignmentsWillem Jan Palenstijn
2013-10-08WINTERMUTE: Fix displayTransOffsetWillem Jan Palenstijn
Regression from 14cb1f09c0bc2cace830eaa793227f195acb06bc. This fixes font border drawing.
2013-10-07WINTERMUTE: Call updateScreen() every frame, even without updates.Willem Jan Palenstijn
This fixes expose events with the opengl backend.
2013-10-06WINTERMUTE: Fix typo causing tiled image corruptionWillem Jan Palenstijn
2013-10-06WINTERMUTE: Integrate SDL_rotozoom code for scale/rotoscaleWillem Jan Palenstijn
2013-10-06WINTERMUTE: Partially fix rotoscale coordinate confusionWillem 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-06WINTERMUTE: Remove outdated commentWillem Jan Palenstijn
2013-10-06WINTERMUTE: Remove presumably outdated off-by-one correctionWillem 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-05WINTERMUTE: Let pixel blending functions be inlinedWillem Jan Palenstijn
2013-10-05WINTERMUTE: Speed up scale()Willem Jan Palenstijn
This is a tweaked version of a patch from eriktorbjorn.
2013-10-03WINTERMUTE: Update full screen on ScreenChangedWillem Jan Palenstijn
This fixes the screen not updating after e.g., scaler changes. Bug #3594245.
2013-10-03WINTERMUTE: Add missing breakWillem Jan Palenstijn
Confirmed by Mnemonic.
2013-10-02WINTERMUTE: Remove unused _drawNumWillem Jan Palenstijn
2013-10-02WINTERMUTE: Fix regression with _skipThisFrameWillem 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-02WINTERMUTE: Fix regression in ticketingWillem Jan Palenstijn
This caused a crash when pressing 'New Game' in the Black Circle demo. Regression from 544e4a2f49630cecbf06fe5b1e11bdbab1bdb281.
2013-10-02WINTERMUTE: Handle invalid file access in Carol Reed 6: Black CircleFilippos Karapetis
2013-10-01WINTERMUTE: Clean up byte/char casts in loading/parsingWillem Jan Palenstijn
2013-10-01WINTERMUTE: Fix broken uint32/ulong castWillem Jan Palenstijn
2013-10-01WINTERMUTE: Fix up doxygen commentWillem Jan Palenstijn
2013-09-30Merge branch 'master' into wme_renderingWillem Jan Palenstijn
2013-09-30WINTERMUTE: Add displayTiled function to replace repeatLastDrawWillem Jan Palenstijn
This avoids queueing many tickets for a UITiledImage, replacing them by a single tiled ticket.
2013-09-30WINTERMUTE: Fix compiler warningsEugene Sandulenko
2013-09-30Merge branch 'refac'Einar Johan Trøan Sømåen
Conflicts: engines/wintermute/graphics/transparent_surface.cpp engines/wintermute/graphics/transparent_surface.h
2013-09-30WINTERMUTE: Use ; and not , to separate delete and new.Einar Johan Trøan Sømåen
2013-09-30WINTERMUTE: Formatting with Astyle (UIButton, UIEdit, UIObject, UIWindow, ↵Einar Johan Trøan Sømåen
TransparentSurface)
2013-09-30WINTERMUTE: Formatting (Clean up extra whitespace in UIObject).Einar Johan Trøan Sømåen
2013-09-30WINTERMUTE: Constify some getters in TransparentSurface, UIObject and UIWindowEinar Johan Trøan Sømåen
2013-09-30WINTERMUTE: Remove almost unused _colorMod fieldWillem 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-29WINTERMUTE: Fix typo in commentWillem Jan Palenstijn
2013-09-29WINTERMUTE: Do antialiased TT font renderingWillem Jan Palenstijn
2013-09-26WINTERMUTE: CleanupWillem Jan Palenstijn
2013-09-26WINTERMUTE: Remove ticket->_drawNumWillem Jan Palenstijn
2013-09-26WINTERMUTE: Remove left-over assertsWillem Jan Palenstijn
2013-09-26WINTERMUTE: Remove unnecessary loopWillem Jan Palenstijn
2013-09-26WINTERMUTE: No longer update ticket->_drawNumWillem Jan Palenstijn
2013-09-26WINTERMUTE: No longer use ticket->_drawNumWillem Jan Palenstijn
2013-09-26WINTERMUTE: Remove unnecessary re-iterationWillem Jan Palenstijn
2013-09-26WINTERMUTE: Mirror _drawNum with an iteratorWillem Jan Palenstijn
2013-09-26WINTERMUTE: Remove _tempDisableDirtyRectsWillem Jan Palenstijn
2013-09-26WINTERMUTE: Remove ticket batchingWillem Jan Palenstijn
2013-09-26WINTERMUTE: Fix warningWillem Jan Palenstijn
2013-09-23WINTERMUTE: Remove asserts in Blend-functions in TransparentSurface.Einar Johan Trøan Sømåen
2013-09-23WINTERMUTE: Pass blendMode to blit() in RenderTicket.Tobia Tesan
2013-09-23WINTERMUTE: Add support for additive/subtractive blending in TransparentSurfaceTobia Tesan
2013-09-23WINTERMUTE: Match type of angle constant to struct in TransformStruct, ↵Tobia Tesan
silence warnings
2013-09-21WINTERMUTE: FormattingTobia Tesan
2013-09-21WINTERMUTE: const'ify gettersTobia Tesan
2013-09-21WINTERMUTE: s/put/set/ in settersTobia Tesan
2013-09-21WINTERMUTE: add UIButton::setTextAlignTobia Tesan
2013-09-21WINTERMUTE: Make sprites private in UIButtonTobia Tesan