Submit submits commands in buffer to given device queue, without any semaphore logic -- suitable for a WaitIdle logic.
(dev *Device)
| 98 | // Submit submits commands in buffer to given device queue, without |
| 99 | // any semaphore logic -- suitable for a WaitIdle logic. |
| 100 | func (cp *CmdPool) Submit(dev *Device) { |
| 101 | CmdSubmit(cp.Buff, dev) |
| 102 | } |
| 103 | |
| 104 | // Reset resets the command buffer so it is ready for recording new commands. |
| 105 | func (cp *CmdPool) Reset() { |
nothing calls this directly
no test coverage detected