summaryrefslogtreecommitdiff
path: root/src/gfx.cpp
AgeCommit message (Collapse)Author
2015-08-10(svn r27381) -Fix: Warnings due to C++11 requirements for explicit narrowing ↵michi_cc
conversions in initializer lists.
2015-07-26(svn r27340) -Fix [FS#6338]: Silence warning by moving _string_colourmap to ↵frosch
a file no its own. (Cif)
2015-06-28(svn r27324) -Fix: Remove corner-case optimisation for line drawing, which ↵frosch
failed for dashed lines. (noticed by adf88)
2015-06-28(svn r27323) -Fix: Spelling.frosch
2015-06-28(svn r27322) -Fix: Clipping of inclined lines did not account for the ↵frosch
'horizontal width' being bigger than the 'real width'. (adf88)
2015-02-28(svn r27172) -Fix [FS#6238] (r27167): Apparently Windows randomly drops ↵frosch
SetCursorPos calls. According to internet due to incorrect/missing synchronisation in threads accessing the event queue.
2015-02-22(svn r27167) -Fix: [SDL, Windows] Right-mouse-button scrolling ↵frosch
scrolled/jumped way to far, when OpenTTD lagged during mouse event processing.
2015-02-01(svn r27134) -Codechange: Simplify GUI scaling by adding UnScaleGUI() and ↵frosch
ScaleGUITrad().
2014-10-12(svn r27004) -Codechange: Make GUI size apply to (sprite-font) text as well.peter1138
2014-10-11(svn r26990) -Feature: Add option to choose normal, double or quad-size ↵peter1138
interface.
2014-10-06(svn r26969) -Fix (r26869): black palette didn't work very well with ↵rubidium
unmasked 32bpp sprites
2014-10-05(svn r26965) -Codechange: Add palette bit to indicate that palette is ↵peter1138
actually a text colour remap, and draw closebox as a sprite, using said bit. Change news popup to use closebox widget for its closebox.
2014-09-07(svn r26792) -Fix: TC_NO_SHADE did not work for 32bpp text rendering.frosch
2014-04-28(svn r26538) -Codechange: remove double accounting of the driversrubidium
2014-04-27(svn r26522) -Add: A config-file-only setting to disable usage of 8bpp video ↵frosch
modes. -Remove: [win32] fullscreen_bpp setting, which is replaced by above setting. -Change: Disable usage of 8bpp blitters and video modes by default. Many modern OS and hardware cause issues with those.
2014-04-23(svn r26482) -Codechange: add an include that allows us to undefine/redefine ↵rubidium
"unsafe" functions to prevent them from being used, and thus having to care about certain aspects of their return values
2014-04-16(svn r26467) -Fix: Include shadow on ...peter1138
2014-04-13(svn r26463) -Fix (r10190ish): Add special handling for PALETTE_CRASH to ↵peter1138
work for non-8bpp-mapped sprites.
2014-01-02(svn r26209) -Codechange: remove some template magic and simplify some coderubidium
2014-01-02(svn r26204) -Codechange: rework GfxBlitter to remove some unneeded ↵rubidium
operations when there is no sub sprite (based on patch by MJP)
2014-01-02(svn r26203) -Codechange: unduplicate GfxMainBlitter and GfxMainBlitterViewportrubidium
2013-11-16(svn r26018) -Codechange: since there's a wrapper for ICU functions now, we ↵rubidium
can use proper coding style for names again
2013-11-16(svn r26016) -Codechange: prepare for some class renamesrubidium
2013-11-16(svn r26015) -Codechange: some constificatonrubidium
2013-10-23(svn r25911) -Add: Support for drawing dashed lines.fonsinchen
2013-10-06(svn r25816) -Add [FS#5748]: Toggle button for wrapping lines in the ↵frosch
textfile GUI (LordAro)
2013-08-10(svn r25714) -Fix: explicitly cast some things to silence warnings on GCC 4.0fonsinchen
2013-08-05(svn r25691) -Add: [OSX] Support for mouse selection in the IME composition ↵michi_cc
string.
2013-08-05(svn r25651) -Fix: Textbuf caret rendering for complex scripts (e.g. Tamil).michi_cc
2013-07-06(svn r25567) -Codechange: Revive dead DrawStringParams as FontState.frosch
2013-07-06(svn r25564) -Add: a simple clipping rule to decide whether a string without ↵frosch
linebreaks is visible before computing the layouting. This skips around 2/3 of layout computations in usual-sized list-like windows.
2013-07-01(svn r25547) -Fix [FS#5626]: ICU returns the width of the visual run as if ↵rubidium
the trailing space was added (in case a newline was added). This caused the width to be more than the requested width, but it would still be drawn correctly
2013-06-26(svn r25478) -Fix: Clip glyphs using the actual sprite dimensions instead of ↵frosch
the text advancement.
2013-06-26(svn r25477) -Fix: truncation didn't work because the string was truncated ↵rubidium
(or rather a newline was added) too early
2013-06-26(svn r25476) -Cleanup: Remove unused _max_char_size, _max_char_height, ↵frosch
_max_char_width.
2013-06-25(svn r25472) -Cleanup: remove the old methods for drawing textrubidium
2013-06-25(svn r25471) -Fix/Feature [FS#5481]: support for Brahmic scripts (e.g. Tamil ↵rubidium
and Thai)
2013-06-25(svn r25467) -Add: truncation support to the drawing routinerubidium
2013-06-25(svn r25466) -Add: drawing routine for the layout enginerubidium
2013-06-24(svn r25455) -Cleanup: make local function really localrubidium
2013-06-24(svn r25454) -Remove/Fix/Cleanup: SETX(Y) does not work at all with other ↵rubidium
than default fonts, so get rid of it
2013-06-23(svn r25438) -Codechange: introduce classes for the FontCacherubidium
2013-06-09(svn r25343) -Add: method to count the number of lines required to draw a ↵zuu
string with line warping
2013-06-01(svn r25314) -Fix (r25313): If '0' is the broadest digit, 0 * sum(10^i, ↵frosch
i=0..(n-1)) is not the broadest n-digit number. -Fix [FS#5562]: Proper size-estimation for numbers with n digits.
2013-06-01(svn r25313) -Fix: Do not assume '8' to be the broadest digit, but test all ↵frosch
of them.
2013-03-24(svn r25119) -Codechange [FS#5512]: Improve the clipping/visiblity check ↵frosch
before sending lines to blitter for drawing. (fonsinchen)
2013-03-24(svn r25118) -Codechange: Deduplicate basic line clipping code. (fonsinchen)frosch
2013-01-08(svn r24900) -Fix [FS#5389]: Comments with typos (most fixes supplied by ↵planetmaker
Eagle_rainbow)
2013-01-03(svn r24885) -Fix: Pass proper UTF-16 strings instead of UCS-2 to ICU in ↵michi_cc
order to preserve characters outside the BMP.
2012-11-07(svn r24668) -Feature(ette) [FS#5311]: Draw cargo labels in the station list ↵frosch
black or white depending on the background colour. (sbr)