| 44 | #endif |
| 45 | |
| 46 | void SetBoolArrayTrue(VkBool32* bool_array, uint32_t num_bools) { |
| 47 | for (uint32_t i = 0; i < num_bools; ++i) { |
| 48 | bool_array[i] = VK_TRUE; |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | VkDeviceSize GetImageSizeFromCreateInfo(const VkImageCreateInfo* pCreateInfo) { |
| 53 | VkDeviceSize size = pCreateInfo->extent.width; |
no outgoing calls
no test coverage detected