| 1099 | } |
| 1100 | |
| 1101 | void DestroyRenderPass(VkDevice vk_device, VkRenderPass render_pass) |
| 1102 | { |
| 1103 | if (render_pass != VK_NULL_HANDLE) |
| 1104 | { |
| 1105 | vkDestroyRenderPass(vk_device, render_pass, 0); |
| 1106 | } |
| 1107 | } |
| 1108 | |
| 1109 | static uint16_t FillVertexInputAttributeDesc(HVertexDeclaration vertexDeclaration, VkVertexInputAttributeDescription* vk_vertex_input_descs, uint32_t binding) |
| 1110 | { |
no outgoing calls
no test coverage detected