| 993 | } |
| 994 | |
| 995 | VkDescriptorBufferInfo ApiVulkanSample::create_descriptor(vkb::core::BufferC &buffer, VkDeviceSize size, VkDeviceSize offset) |
| 996 | { |
| 997 | VkDescriptorBufferInfo descriptor{}; |
| 998 | descriptor.buffer = buffer.get_handle(); |
| 999 | descriptor.range = size; |
| 1000 | descriptor.offset = offset; |
| 1001 | return descriptor; |
| 1002 | } |
| 1003 | |
| 1004 | VkDescriptorImageInfo ApiVulkanSample::create_descriptor(Texture &texture, VkDescriptorType descriptor_type) |
| 1005 | { |
nothing calls this directly
no test coverage detected