* @brief Staging buffer and callback data for copying data between the GPU and * CPU. */
| 441 | * CPU. |
| 442 | */ |
| 443 | struct CopyData { |
| 444 | WGPUCommandBuffer commandBuffer; |
| 445 | WGPUBuffer readbackBuffer; |
| 446 | std::promise<void> promise; |
| 447 | std::future<void> future; |
| 448 | }; |
| 449 | |
| 450 | /** |
| 451 | * @brief Represents handles + metadata for a reusable kernel on the GPU. |
nothing calls this directly
no outgoing calls
no test coverage detected