Memory utils MemCmdStart starts a one-time memory command using the Memory CmdPool and Device associated with this System Use this for other random memory transfer commands.
()
| 488 | // Memory CmdPool and Device associated with this System |
| 489 | // Use this for other random memory transfer commands. |
| 490 | func (sy *System) MemCmdStart() vk.CommandBuffer { |
| 491 | cmd := sy.Mem.CmdPool.NewBuffer(&sy.Device) |
| 492 | CmdBeginOneTime(cmd) |
| 493 | return cmd |
| 494 | } |
| 495 | |
| 496 | // MemCmdEndSubmitWaitFree submits current one-time memory command |
| 497 | // using the Memory CmdPool and Device associated with this System |
no test coverage detected