kc3-lang/SDL/src/video/windows/SDL_windowsvulkan.c

Branch :


Log

Author Commit Date CI Message
120c76c8 2022-01-03 09:40:00 Updated copyright for 2022
9130f7c3 2021-01-02 10:25:38 Updated copyright for 2021
cb361896 2020-12-09 07:16:22 Fixed bug 5235 - All internal sources should include SDL_assert.h Ryan C. Gordon We should really stick this in SDL_internal.h or something so it's always available.
a8780c6a 2020-01-16 20:49:25 Updated copyright date for 2020
5e13087b 2019-01-04 22:01:14 Updated copyright for 2019
5febdfce 2018-09-24 11:49:25 Fixed whitespace
40b27fd5 2018-02-12 17:00:00 revert the recent typecast assignment changes (see bug #4079) also change the void* typedefs for the two vulkan function pointers added in vulkan_internal.h into generic function pointer typedefs.
873141ac 2018-02-11 15:29:36 ISO C correct fix for casting void* to function pointer
882215e1 2018-02-11 18:16:01 vulkan: Fix assignment of vkGetInstanceProcAddr on Windows. "*(void**)pfn = LoadAddress()" would cast the NULL pointer in pfn to a void**, and then dereference it, which wasn't what we wanted. Replaced with a clearer cast operation.
90e72bf4 2018-01-30 18:08:34 Fixed ISO C99 compatibility SDL now builds with gcc 7.2 with the following command line options: -Wall -pedantic-errors -Wno-deprecated-declarations -Wno-overlength-strings --std=c99
e3cc5b2c 2018-01-03 10:03:25 Updated copyright for 2018
ce2b1644 2017-08-28 00:11:38 Be clear that disabling Vulkan surface support disables the entire SDL Vulkan integration
25e3a1ec 2017-08-27 22:15:57 vulkan: Initial Vulkan support! This work was done by Jacob Lifshay and Mark Callow; I'm just merging it into revision control.