git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@136 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
NishiOwO
2025-10-03 08:28:16 +00:00
parent c3e06b73ea
commit 23d6e8787e

View File

@@ -199,11 +199,11 @@ void vulkan_setup(MwWidget handle) {
uint32_t i; uint32_t i;
VkViewport viewport = {}; VkViewport viewport = {};
VkRect2D scissor = {}; VkRect2D scissor = {};
VkCommandPool cmdPool = {}; VkCommandPool cmdPool = VK_NULL_HANDLE;
VkResult res = 0; VkResult res = 0;
VkShaderModule fragShaderModule; VkShaderModule fragShaderModule;
VkShaderModule vertShaderModule; VkShaderModule vertShaderModule;
VkPipelineLayout pipelineLayout = {}; VkPipelineLayout pipelineLayout = VK_NULL_HANDLE;
VkAttachmentDescription colorAttachment = {}; VkAttachmentDescription colorAttachment = {};
VkAttachmentReference colorAttachmentRef = {}; VkAttachmentReference colorAttachmentRef = {};
VkSubpassDescription subpass = {}; VkSubpassDescription subpass = {};