implementing webgpu pipeline, fixing vulkan compute pass

This commit is contained in:
2025-02-26 15:01:36 +01:00
parent 6029695155
commit bb7b6e716a
8 changed files with 65 additions and 7 deletions

View File

@@ -99,6 +99,8 @@ PULSE_API void PulseEndComputePass(PulseComputePass pass)
memset(pass->readonly_storage_buffers, 0, PULSE_MAX_READ_BUFFERS_BOUND * sizeof(PulseBuffer));
memset(pass->readwrite_storage_buffers, 0, PULSE_MAX_WRITE_BUFFERS_BOUND * sizeof(PulseBuffer));
pass->cmd->device->PFN_EndComputePass(pass);
pass->current_pipeline = PULSE_NULL_HANDLE;
pass->is_recording = false;