| 742 | } |
| 743 | |
| 744 | void cgpu_cmd_end(CGPUCommandBufferId cmd) |
| 745 | { |
| 746 | cgpu_assert(cmd != CGPU_NULLPTR && "fatal: call on NULL cmdbuffer!"); |
| 747 | cgpu_assert(cmd->device != CGPU_NULLPTR && "fatal: call on NULL device!"); |
| 748 | const CGPUProcCmdEnd fn_cmd_end = cmd->device->proc_table_cache->cmd_end; |
| 749 | cgpu_assert(fn_cmd_end && "cmd_end Proc Missing!"); |
| 750 | fn_cmd_end(cmd); |
| 751 | } |
| 752 | |
| 753 | // Compute CMDs |
| 754 | CGPUComputePassEncoderId cgpu_cmd_begin_compute_pass(CGPUCommandBufferId cmd, const struct CGPUComputePassDescriptor* desc) |
no outgoing calls