| 2427 | } |
| 2428 | |
| 2429 | static void VulkanSetIndexBufferData(HIndexBuffer buffer, uint32_t size, const void* data, BufferUsage buffer_usage) |
| 2430 | { |
| 2431 | DM_PROFILE(__FUNCTION__); |
| 2432 | SetDeviceBuffer(g_VulkanContext, (DeviceBuffer*) buffer, size, 0, data); |
| 2433 | } |
| 2434 | |
| 2435 | static void VulkanSetIndexBufferSubData(HIndexBuffer buffer, uint32_t offset, uint32_t size, const void* data) |
| 2436 | { |
nothing calls this directly
no test coverage detected