Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-06-15 | GRAPHICS: Fix colorToARGB's alpha value when no alpha channel is present | Matthew Hoops | |
2012-06-16 | ALL: Let overlay related methods in OSystem take a void * and use a proper ↵ | Johannes Schickel | |
pitch values. This is a first step to get rid of OverlayColor, which is a requirement for proper 4Bpp overlay support. | |||
2012-06-16 | GRAPHICS: Let CursorMan's cursor functions take "const void *" buffers. | Johannes Schickel | |
2012-06-12 | GRAPHICS: Replace OverlayColor with uint16 in scaler code. | Johannes Schickel | |
Scalers are actually fixed at 2Bpp right now and not at the depth of OverlayColor. | |||
2012-06-03 | ALL: Replace cursorTargetScale in OSystem API with a simple "do not scale" ↵ | Johannes Schickel | |
logic. All uses of the old target scale API actually wanted to disallow scaling of the mouse cursor. This commit adapts our API to this and thus simplifies backend implementations. Some backends, most notable the Wii and Android, did some implementation of the cursor target scale, which I didn't adapt yet. I added a TODO for the porters there. | |||
2012-05-25 | Merge remote branch 'upstream/master' into pegasus | Matthew Hoops | |
2012-05-14 | GRAPHICS: Hide the WinCursor implementation | Matthew Hoops | |
2012-05-14 | GRAPHICS: Add palette start index and color count functions to ImageDecoder | Matthew Hoops | |
2012-05-04 | Merge remote branch 'upstream/master' into pegasus | Matthew Hoops | |
2012-05-04 | GRAPHICS: Fix 32-bit DirectBits images | Matthew Hoops | |
2012-05-03 | GRAPHICS: Remove unused function ftFloor26_6 in ttf.cpp. | Johannes Schickel | |
2012-05-03 | Merge pull request #213 from fuzzie/leak-fixes | Johannes Schickel | |
The pull request in question is "Memory leak fixes". | |||
2012-04-22 | GRAPHICS: Fix BMP getPalette function definition. | D G Turner | |
The BMP decoder getPalette function definition is now identical to the other image format decoders subclassed from ImageDecoder. This also fixes a overloaded virtual warning reported by salty-horse. | |||
2012-04-19 | GRAPHICS: Only accept JPEG CompressedQuickTime PICT opcodes | Matthew Hoops | |
2012-04-19 | Merge remote branch 'upstream/master' into pegasus | Matthew Hoops | |
Conflicts: base/plugins.cpp configure | |||
2012-04-16 | GRAPHICS: Improve the YUV410 conversion code speed some more | Matthew Hoops | |
2012-04-14 | GRAPHICS: Make YUV410 conversion code use bilinear interpolation | Matthew Hoops | |
SVQ1 no longer looks blocky and now looks a lot closer to what QuickTime outputs | |||
2012-04-08 | GRAPHICS: Add comments on which engines use the decoders | Matthew Hoops | |
2012-04-08 | GRAPHICS: Add YUV410 to RGB Conversion Functions, required for SVQ1. | D G Turner | |
Thanks to clone2727 for these. | |||
2012-04-03 | GRAPHICS: Fix casting away const | Joel Teichroeb | |
2012-03-28 | BASE: Free TTFLibrary singleton on shutdown. | Alyssa Milburn | |
This uses a helper function because TTFLibrary is internal. | |||
2012-03-28 | GRAPHICS: Take ownership of fonts passed to FontManager. | Alyssa Milburn | |
2012-03-28 | GRAPHICS: Don't try to delete static BDF data. | Alyssa Milburn | |
2012-03-20 | Merge remote branch 'upstream/master' into pegasus | Matthew Hoops | |
2012-03-19 | GRAPHICS: Fix regression caused by a bad rebase | Matthew Hoops | |
2012-03-19 | GRAPHICS: Fix PICT 16bpp | Matthew Hoops | |
2012-03-20 | GRAPHICS: Add support for converting surfaces from 24bpp | Matthew Hoops | |
2012-03-20 | GRAPHICS: Move PNG to the ImageDecoder interface | Matthew Hoops | |
2012-03-20 | GRAPHICS: Make PNG signature more readable | Matthew Hoops | |
2012-03-20 | GRAPHICS: Make the JPEG code use the new YUV to RGB converter | Matthew Hoops | |
2012-03-20 | GRAPHICS: Convert JPEG to the ImageDecoder API | Matthew Hoops | |
2012-03-20 | GRAPHICS: Convert PictDecoder to the ImageDecoder API | Matthew Hoops | |
2012-03-20 | GRAPHICS: Rewrite ImageDecoder to have an improved API | Matthew Hoops | |
The new bitmap decoder class is based off the Mohawk one, and now has 8bpp decoding capability. | |||
2012-03-20 | GRAPHICS: Add a convertTo() function to Surface | Matthew Hoops | |
2012-03-19 | GRAPHICS: Render TTF glyphs at the right locations. | Alyssa Milburn | |
Or at least using the fields used by the FreeType examples. | |||
2012-03-19 | GRAPHICS: Fix TTF glyph drawing at negative Y positions. | Alyssa Milburn | |
2012-03-13 | JANITORIAL: Remove unnecessary empty default constructors/destructors. | Christoph Mallon | |
2012-02-26 | COMMON: Move Language and Platform functionality into separate files | Max Horn | |
2012-02-22 | ALL: Fix some signed/unsigned comparison warnings. | Johannes Schickel | |
2012-02-21 | Merge pull request #182 from fingolfin/forbid-ctype | Willem Jan Palenstijn | |
ALL: Avoid using is* macros from ctype.h | |||
2012-02-20 | GUI: Fix mingw-w64 build errors | Willem Jan Palenstijn | |
2012-02-20 | GUI: Implement AAed tabs | Willem Jan Palenstijn | |
The stroke effect isn't properly implemented yet since it isn't used in the modern theme. There are slight bleeding colours around the corners of the tab_background when its corners overlap with the corners of the underlying dialog. These are hard to avoid because the underlying dialog destroys the background that we should be blending these corners with. | |||
2012-02-20 | GUI: Add AA dialog corners on alpha overlays | Willem Jan Palenstijn | |
2012-02-20 | GUI: Minor cleanup | Willem Jan Palenstijn | |
2012-02-20 | GUI: Speed up alpha blending with black for classic dialog backgrounds | Willem Jan Palenstijn | |
2012-02-20 | GUI: Keep dst alpha unchanged when blending colours | Willem Jan Palenstijn | |
2012-02-20 | GUI: Rewrite AA rounded square renderer | Willem Jan Palenstijn | |
This fixes bleeding of colours between different regions. It also turns 'bevel' into an option that turns the stroke into a bevel, and implements antialiased gradient-fills. | |||
2012-02-20 | COMMON: Move isFoo functions to namespace Common, add doxygen comments | Max Horn | |
2012-02-15 | JANITORIAL: Fix missing whitespace in pointer cast | Tarek Soliman | |
find -name '*.h' -or -name '*.cpp' | xargs sed -r -i 's@\(([A-Za-z0-9]+)\*\)@(\1 *)@g' This seems to have caught some params as well which is not undesirable IMO. It also caught some strings containing this which is undesirable so I excluded them manually. (engines/sci/engine/kernel_tables.h) | |||
2012-02-15 | ALL: Avoid using is* macros from ctype.h | Max Horn | |
On some systems, passing signed chars to macros like isspace() etc. lead to a runtime error. Hence, mark these macros as forbidden by default, and introduce otherwise equivalent alternatives for them. |