| 285 | |
| 286 | template<typename T> |
| 287 | void DeleteRepackedStructArray(uint32_t Count, T* HostData, guest_layout<T*>& GuestData) { |
| 288 | for (uint32_t i = 0; i < Count; ++i) { |
| 289 | fex_apply_custom_repacking_exit(GuestData.get_pointer()[i], to_host_layout(HostData[i])); |
| 290 | } |
| 291 | delete[] HostData; |
| 292 | } |
| 293 | |
| 294 | void fexfn_impl_libvulkan_vkCmdSetVertexInputEXT( |
| 295 | VkCommandBuffer Buffer, uint32_t BindingDescCount, guest_layout<const VkVertexInputBindingDescription2EXT*> GuestBindingDescs, |
no test coverage detected