summaryrefslogtreecommitdiff
path: root/src/video/android/SDL_androidvulkan.c
Commit message (Collapse)AuthorAgeFilesLines
* Updated copyright for 2021Sam Lantinga2021-01-021-1/+1
|
* Fixed bug 5235 - All internal sources should include SDL_assert.hSam Lantinga2020-12-091-1/+0
| | | | | | Ryan C. Gordon We should really stick this in SDL_internal.h or something so it's always available.
* Updated copyright date for 2020Sam Lantinga2020-01-161-1/+1
|
* Android: some readability: redundant casts, deads stores, redundant control flowSylvain Becker2019-10-311-1/+1
|
* Updated copyright for 2019Sam Lantinga2019-01-041-1/+1
|
* revert the recent typecast assignment changes (see bug #4079)sezero2018-02-121-3/+3
| | | | | | also change the void* typedefs for the two vulkan function pointers added in vulkan_internal.h into generic function pointer typedefs.
* Fixed ISO C99 compatibilitySam Lantinga2018-01-301-4/+5
| | | | | SDL now builds with gcc 7.2 with the following command line options: -Wall -pedantic-errors -Wno-deprecated-declarations -Wno-overlength-strings --std=c99
* Updated copyright for 2018Sam Lantinga2018-01-031-1/+1
|
* Fixed bug 3799 - SDL_CreateWindow fails with SDL_WINDOW_VULKAN ↵Sam Lantinga2017-09-061-1/+1
| | | | | | | | | | (libvulkan.so.1 not found) Manuel Sabogal Android NDK defines Vulkan as libvulkan.so, not libvulkan.so.1. This is causing the program to not being able to create a window using SDL_WINDOW_VULKAN. To fix this issue just change the line http://hg.libsdl.org/SDL/file/9e33d1be5d65/src/video/android/SDL_androidvulkan.c#l53 from "libvulkan.so.1" to "libvulkan.so"
* Be clear that disabling Vulkan surface support disables the entire SDL ↵Sam Lantinga2017-08-281-1/+1
| | | | Vulkan integration
* Fixed Android build with Vulkan supportSam Lantinga2017-08-271-2/+2
|
* Fixed Android buildSam Lantinga2017-08-271-3/+3
|
* vulkan: Initial Vulkan support!Ryan C. Gordon2017-08-271-0/+174
This work was done by Jacob Lifshay and Mark Callow; I'm just merging it into revision control.