kc3-lang/SDL/src/timer/vita

Branch :


Log

Author Commit Date CI Message
120c76c8 2022-01-03 09:40:00 Updated copyright for 2022
99c9727d 2021-10-23 15:00:31 timer: Added SDL_GetTicks64(), for a timer that doesn't wrap every ~49 days. Note that this removes the timeGetTime() fallback on Windows; it is a 32-bit counter and SDL2 should never choose to use it, as it only is needed if QueryPerformanceCounter() isn't available, and QPC is _always_ available on Windows XP and later. OS/2 has a similar situation, but since it isn't clear to me that similar promises can be made about DosTmrQueryTime() even in modern times, I decided to leave the fallback in, with some heroic measures added to try to provide a true 64-bit tick counter despite the 49-day wraparound. That approach can migrate to Windows too, if we discover some truly broken install that doesn't have QPC and still depends on timeGetTime(). Fixes #4870.
a4ddb175 2021-03-08 19:28:58 Formatting
7d89f09f 2020-12-18 14:28:09 ISO C90 fixes
3ac2242e 2020-12-09 12:37:39 Fix PerformanceCounter
2d64e37e 2020-11-02 18:09:43 Initial rebase of xerpi's port