aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/graphics
AgeCommit message (Collapse)Author
2013-08-01WINTERMUTE: #define to const for TransformStruct defaultsTobia Tesan
2013-08-01WINTERMUTE: Remove single-argument zoom, rename mirrorX => getMirrorX() in ↵Tobia Tesan
transform_struct.h
2013-08-01WINTERMUTE: FormattingTobia Tesan
2013-08-01WINTERMUTE: Fix operator precedence in scale()Tobia Tesan
2013-08-01WINTERMUTE: Pass structs by const referenceTobia Tesan
2013-08-01WINTERMUTE: // End of namespace WintermuteTobia Tesan
2013-08-01WINTERMUTE: Fix calculation of inverse anglesTobia Tesan
2013-08-01WINTERMUTE: s/*transform/const &transform/Tobia Tesan
2013-08-01WINTERMUTE: FormattingTobia Tesan
2013-08-01WINTERMUTE: Defaults -> floatTobia Tesan
2013-08-01WINTERMUTE: Rename rotate() -> rotoscale() for consistencyTobia Tesan
2013-08-01WINTERMUTE: *transform as pointer in transform_toolsTobia Tesan
2013-08-01WINTERMUTE: Swap flip bitsTobia Tesan
2013-08-01WINTERMUTE: Partial fix for mirrored spritesTobia Tesan
Still weird with rotated + mirrored + scaled sprites. Offset.
2013-08-01WINTERMUTE: Rename pixel copy functionsTobia Tesan
2013-08-01WINTERMUTE: Move if() outside transform loopTobia Tesan
2013-08-01WINTERMUTE: Removed useless argument from rotate()Tobia Tesan
2013-08-01WINTERMUTE: Add rotationTobia Tesan
Add actual rotation code, make ticket-system transformStruct-aware
2013-07-31WINTERMUTE: Bilinear scaling.Tobia Tesan
Refactor scale(), factor out actual mapping algorithm, add bilinear scaling
2013-07-31WINTERMUTE: Introduce TransformToolsTobia Tesan
2013-07-31WINTERMUTE: Introduce TransformStruct and FloatPoint; add operators to Point32Tobia Tesan
2013-04-17WINTERMUTE: Avoid dereferncing null-pointer in TransparentSurfaceEinar Johan Trøan Sømåen
2013-01-26WINTERMUTE: Replace all NULLs with nullptr.Einar Johan Trøan Sømåen
2013-01-24WINTERMUTE: Don't scale 2Bpp images with code aimed at 4BppEinar Johan Trøan Sømåen
2013-01-22WINTERMUTE: Correct a delete/delete[]-mismatch pointed out by valgrindEinar Johan Trøan Sømåen
2012-09-26JANITORIAL: Remove trailing whitespaces.Johannes Schickel
Powered by: git ls-files "*.cpp" "*.h" "*.m" "*.mm" | xargs sed -i -e 's/[ \t]*$//'
2012-08-31WINTERMUTE: Fix g++ warnings listed by LordHotoEinar Johan Trøan Sømåen
2012-08-31WINTERMUTE: Update to use new TGA-decoder and new Video-systemEinar Johan Trøan Sømåen
2012-08-13WINTERMUTE: WinterMute -> WintermuteEinar Johan Trøan Sømåen
2012-08-13WINTERMUTE: Cleanup in TransparentSurface.Einar Johan Trøan Sømåen
2012-08-13WINTERMUTE: Use 64k-tables for alpha-blitting.Einar Johan Trøan Sømåen
2012-08-07WINTERMUTE: Use only one scaler for blitting, the faster one.Einar Johan Trøan Sømåen
2012-08-07WINTERMUTE: Optimize blitting (Do opaque blits for opaque images, and do ↵Einar Johan Trøan Sømåen
fill with memcpy)
2012-08-07WINTERMUTE: Change PixelFormat to ARGB (same as Sword25)Einar Johan Trøan Sømåen
Mainly a workaround for the OpenGL-backend.
2012-07-27WINTERMUTE: Use an arbitrary size nearest neighbour scaler for save ↵Einar Johan Trøan Sømåen
thumbnails. Thanks to clone2727
2012-07-26WINTERMUTE: var_name -> varNameEinar Johan Trøan Sømåen
2012-07-21WINTERMUTE: Rename CamelCased filenames to prefixed_under_score-filenamesEinar Johan Trøan Sømåen
This is mostly a lead-up to namespacing the Ad/Base folders, and then possibly removing the prefixes from the files, it also has the added benefit of getting rid of the odd case-typos that makes for issues on platforms that don't ignore case.
2012-07-20WINTERMUTE: Readd the endian-independence for blitting.Einar Johan Trøan Sømåen
2012-07-20WINTERMUTE: Silence a few signed/unsigned warnings.Einar Johan Trøan Sømåen
2012-07-16WINTERMUTE: Fix a regression with sprite-mirroring.Einar Johan Trøan Sømåen
2012-07-16WINTERMUTE: Readd const to transparentSurface-shifts, and remove branches ↵Einar Johan Trøan Sømåen
for mask-less blit.
2012-07-06WINTERMUTE: Rename FuncName/VarName -> funcName/varName in BFont and ↵Einar Johan Trøan Sømåen
BFontBitmap. Also adjust a few "byte *" to "byte *"
2012-06-22WINTERMUTE: Run astyle on the source-files.Einar Johan Trøan Sømåen
2012-06-19WINTERMUTE: Make sure the TGA-decoder returns false on errorEinar Johan Trøan Sømåen
2012-06-02WINTERMUTE: Add color-keying for BSurfaceSDL BMPsEinar Johan Trøan Sømåen
2012-06-02WINTERMUTE: Let blitting of non 32bpp surfaces fail with a warning instead ↵Einar Johan Trøan Sømåen
of an error for now.
2012-06-02WINTERMUTE: Fix a few warnings.Einar Johan Trøan Sømåen
2012-06-02WINTERMUTE: Add TGA-support to BSurfaceSDLEinar Johan Trøan Sømåen
2012-06-02WINTERMUTE: Add transparentSurface internally for now, to allow ↵Einar Johan Trøan Sømåen
alpha-blended blits.