mirror of https://github.com/encounter/SDL.git
testvulkan.c: fix -Wmissing-braces warnings. also fix whitespace.
This commit is contained in:
parent
20ca1192d2
commit
239c8f1f4c
|
@ -495,7 +495,7 @@ static void findPhysicalDevice(void)
|
||||||
|
|
||||||
static void createDevice(void)
|
static void createDevice(void)
|
||||||
{
|
{
|
||||||
VkDeviceQueueCreateInfo deviceQueueCreateInfo[1] = {0};
|
VkDeviceQueueCreateInfo deviceQueueCreateInfo[1] = { {0} };
|
||||||
static const float queuePriority[] = {1.0f};
|
static const float queuePriority[] = {1.0f};
|
||||||
VkDeviceCreateInfo deviceCreateInfo = {0};
|
VkDeviceCreateInfo deviceCreateInfo = {0};
|
||||||
static const char *const deviceExtensionNames[] = {
|
static const char *const deviceExtensionNames[] = {
|
||||||
|
@ -1024,7 +1024,7 @@ static SDL_bool render(void)
|
||||||
uint32_t frameIndex;
|
uint32_t frameIndex;
|
||||||
VkResult result;
|
VkResult result;
|
||||||
double currentTime;
|
double currentTime;
|
||||||
VkClearColorValue clearColor = {0};
|
VkClearColorValue clearColor = { {0} };
|
||||||
VkPipelineStageFlags waitDestStageMask = VK_PIPELINE_STAGE_TRANSFER_BIT;
|
VkPipelineStageFlags waitDestStageMask = VK_PIPELINE_STAGE_TRANSFER_BIT;
|
||||||
VkSubmitInfo submitInfo = {0};
|
VkSubmitInfo submitInfo = {0};
|
||||||
VkPresentInfoKHR presentInfo = {0};
|
VkPresentInfoKHR presentInfo = {0};
|
||||||
|
|
Loading…
Reference in New Issue