NewComputeSystem returns a new system initialized for this GPU, for Compute, not graphics functionality.
(name string)
| 451 | // NewComputeSystem returns a new system initialized for this GPU, |
| 452 | // for Compute, not graphics functionality. |
| 453 | func (gp *GPU) NewComputeSystem(name string) *System { |
| 454 | sy := &System{} |
| 455 | sy.InitCompute(gp, name) |
| 456 | return sy |
| 457 | } |
| 458 | |
| 459 | // NewGraphicsSystem returns a new system initialized for this GPU, |
| 460 | // for graphics functionality, using Device from the Surface or |