summaryrefslogtreecommitdiff
path: root/src/video
AgeCommit message (Collapse)Author
2016-10-31(svn r27675) -Fix [FS#6502]: [OSX] Building with 10.11 or 10.12 SDKs.michi_cc
2016-10-30(svn r27673) -Add: [Win32] Thread names for windows debuggers.michi_cc
2016-10-30(svn r27670) -Add: [FS#6471] Assign descriptive names to (GNU pthread) ↵frosch
threads. (JGR)
2016-09-04(svn r27653) -Fix(r27647): Rename FileOperation enum and values to ↵alberth
SaveLoadOperation to avoid nameclash with windows compiler toolkit.
2016-09-04(svn r27650) -Codechange: Replace SaveOrLoadMode by FileOperation and ↵alberth
DetailedFileType.
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.
2014-10-26(svn r27046) -Fix [FS#5812]: Don't require double-press from non-dead ↵fonsinchen
console hotkeys.
2014-09-30(svn r26943) -Fix: [Win32] Silence a warning about comparison of signed and ↵planetmaker
unsigned variables when using gcc
2014-09-13(svn r26818) -Fix [FS#AndyShouldHaveFoundFlySprayByNow] (r26758): [OSX] Line ↵michi_cc
history and scrolling in the console window went on a walk.
2014-08-24(svn r26758) -Fix [FS#5972]: [OSX] Implement more of the text editing API to ↵michi_cc
prevent crashes and improve IME support.
2014-07-30(svn r26709) -Fix (r15892 and others) [FS#6069]: [OSX] Compilation fails ↵planetmaker
with some lzo2 versions if we define __LP64__ as 0 instead of checking whether it is defined (kernigh2)
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-25(svn r26509) -Codechange: replace strdup with stredup (the latter ensures ↵rubidium
the return is not NULL)
2014-04-24(svn r26502) -Fix: OSX compilation errorrubidium
2014-04-24(svn r26496) -Fix (r1547): Reading console input on dedicated server relied ↵frosch
on unspecified behaviour.
2014-04-23(svn r26489) -Codechange: properly account for the end of buffers in the ↵rubidium
file io code instead of assuming MAX_PATH is okay
2014-04-23(svn r26486) -Codechange: replace a number of snprintfs with seprintfrubidium
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-08(svn r26449) -Add: Allow more sound sleep for dedicated servers when there's ↵planetmaker
nothing to do and nobody paying attention
2014-02-23(svn r26367) -Fix: [Win32] Use a separate event to indicate that the drawing ↵michi_cc
thread has finished initialising, preventing potential deadlocks.
2014-02-23(svn r26366) -Fix: Protect the windows video driver from concurrent access ↵fonsinchen
(frosch123)
2014-02-23(svn r26365) -Fix [FS#5867]: Don't draw the cursor when its sprite isn't ↵fonsinchen
ready and set _screen.dst_ptr immediately when the buffer changes (frosch123)
2014-02-22(svn r26360) -Revert (r25550) / Fix [FS#5922]: ClientSizeChanged is only ↵frosch
called via WndProcGdi which already has the mutex. The issue which r25550 tried to fix still exists as FS#5867.
2014-02-16(svn r26351) -Fix: Protect all VideoDriver_SDL methods with the _draw_mutex.frosch
2014-01-13(svn r26247) -Fix [FS#5854, FS#5855]: Possible out of bounds reads with the ↵rubidium
sse blitters (MJP)
2014-01-02(svn r26211) -Add: specialised non-animated SS2 blitter (MJP)rubidium
With 32bpp base set about 30% faster than 32bpp-optimized, or about 10% for 8bpp base sets in the Draw function. Respectively about 5 and 1% of total run time
2014-01-02(svn r26209) -Codechange: remove some template magic and simplify some coderubidium
2013-12-30(svn r26186) -Fix: Don't check for equality of MAC_OS_X_VERSION_MAX_ALLOWED.fonsinchen
2013-11-25(svn r26108) -Codechange: some coding style (whitespace)rubidium
2013-11-25(svn r26107) -Codechange/cleanup: remove some coding bloat and simplify the ↵rubidium
driver factory instatiations
2013-11-17(svn r26023) -Fix [FS#5805] (r25686): [OSX] Checking for a valid ↵michi_cc
NSTextInputContext is supposed to fail on 10.4 according to docs, but somehow didn't, leading to a crash when an edit box lost focus.
2013-11-16(svn r26009) -Fix: warning about conditional expression with enumeral with ↵rubidium
non-enumeral type
2013-11-14(svn r26003) -Fix [FS#5795b] (r25743): [OSX] Some hotkeys were still ↵michi_cc
triggered during text input.
2013-11-14(svn r26002) -Fix: [OSX] If the console hotkey is a dead key, require two ↵michi_cc
presses to toggle the console, allowing input of accented characters.
2013-11-14(svn r26001) -Fix [FS#5795a] (r25686): [OSX] Clear any pending marked ↵michi_cc
characters from an edit box losing focus.
2013-11-12(svn r25970) -Fix [FS#5787]: [SDL] Recursive mutex locking when changing blitterrubidium
2013-11-09(svn r25962) -Fix (r25951): [OSX] Do the SDK version test the proper way 'round.michi_cc
2013-11-08(svn r25951) -Fix [FS#5797]: [OSX] Disable the old fullscreen sub-driver ↵michi_cc
when compiling with SDK versions 10.9+.
2013-11-08(svn r25950) -Codechange: [OSX] Move some functions used by all video ↵michi_cc
sub-drivers into the common source file.
2013-08-31(svn r25751) -Fix (r25657): [OSX] Restore fullscreen state also when ↵michi_cc
starting on 10.7+.
2013-08-25(svn r25743) -Fix [FS#5705]: [OSX] Text input into an edit box would trigger ↵michi_cc
hotkeys.
2013-08-10(svn r25714) -Fix: explicitly cast some things to silence warnings on GCC 4.0fonsinchen
2013-08-10(svn r25713) -Fix: use proper ObjC style to avoid problems if members are ↵fonsinchen
missing
2013-08-10(svn r25712) -Fix: define kCGBitmapByteOrder32Host to 0 if it's missing.fonsinchen
2013-08-10(svn r25711) -Fix: don't use NULL as integerfonsinchen
2013-08-10(svn r25710) -Fix: string arguments to NSNotificationCenter::addObserver and ↵fonsinchen
NSNotificationCenter::postNotificationName can't be const in certain versions of OSX
2013-08-05(svn r25693) -Add: [OSX] Support the new IME functions introduced with 10.5.michi_cc
2013-08-05(svn r25691) -Add: [OSX] Support for mouse selection in the IME composition ↵michi_cc
string.
2013-08-05(svn r25690) -Change: [OSX] Position the candidate window at the caret position.michi_cc