mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-26 22:40:50 +00:00
fix warning: missing braces around initializer [-Wmissing-braces]
This commit is contained in:
parent
53ddce9400
commit
8ae3ce9097
2 changed files with 10 additions and 7 deletions
|
@ -91,7 +91,10 @@ typedef struct
|
|||
#define QVVKTEXTURE_INIT { \
|
||||
.image = VK_NULL_HANDLE, \
|
||||
.allocation = VK_NULL_HANDLE, \
|
||||
.allocInfo = VK_NULL_HANDLE, \
|
||||
.allocInfo = { \
|
||||
.pMappedData = VK_NULL_HANDLE, \
|
||||
.pUserData = VK_NULL_HANDLE, \
|
||||
}, \
|
||||
.vmaFlags = 0, \
|
||||
.imageView = VK_NULL_HANDLE, \
|
||||
.sharingMode = VK_SHARING_MODE_MAX_ENUM, \
|
||||
|
|
|
@ -1142,7 +1142,7 @@ static void CreatePipelines()
|
|||
VkDescriptorSetLayout samplerUboLmapDsLayouts[] = { vk_samplerDescSetLayout, vk_uboDescSetLayout, vk_samplerLightmapDescSetLayout };
|
||||
|
||||
// shader array (vertex and fragment, no compute... yet)
|
||||
qvkshader_t shaders[2] = { VK_NULL_HANDLE, VK_NULL_HANDLE };
|
||||
qvkshader_t shaders[2] = {0};
|
||||
|
||||
// push constant sizes accomodate for maximum number of uploaded elements (should probably be checked against the hardware's maximum supported value)
|
||||
VkPushConstantRange pushConstantRangeVert = {
|
||||
|
@ -1527,9 +1527,9 @@ qboolean QVk_Init()
|
|||
|
||||
uint32_t extCount;
|
||||
char **wantedExtensions;
|
||||
memset((char*)vk_config.supported_present_modes, 0, 256);
|
||||
memset((char*)vk_config.extensions, 0, 256);
|
||||
memset((char*)vk_config.layers, 0, 256);
|
||||
memset(vk_config.supported_present_modes, 0, sizeof(vk_config.supported_present_modes));
|
||||
memset(vk_config.extensions, 0, sizeof(vk_config.extensions));
|
||||
memset(vk_config.layers, 0, sizeof(vk_config.layers));
|
||||
vk_config.vk_version = instanceVersion;
|
||||
vk_config.vertex_buffer_usage = 0;
|
||||
vk_config.vertex_buffer_max_usage = 0;
|
||||
|
@ -1943,9 +1943,9 @@ VkResult QVk_EndFrame(qboolean force)
|
|||
void QVk_BeginRenderpass(qvkrenderpasstype_t rpType)
|
||||
{
|
||||
VkClearValue clearColors[3] = {
|
||||
{.color = { 1.f, .0f, .5f, 1.f } },
|
||||
{.color = {.float32 = { 1.f, .0f, .5f, 1.f } } },
|
||||
{.depthStencil = { 1.f, 0 } },
|
||||
{.color = { 1.f, .0f, .5f, 1.f } },
|
||||
{.color = {.float32 = { 1.f, .0f, .5f, 1.f } } },
|
||||
};
|
||||
|
||||
VkRenderPassBeginInfo renderBeginInfo[] = {
|
||||
|
|
Loading…
Reference in a new issue