| 660 | } |
| 661 | |
| 662 | void GpuExecutor::DeallocateTimer(Timer* timer) { |
| 663 | AsGpuTimer(timer)->Destroy(); |
| 664 | } |
| 665 | |
| 666 | bool GpuExecutor::CreateStreamDependency(Stream* dependent, Stream* other) { |
| 667 | GpuEventHandle other_completed_event = *AsGpuStream(other)->completed_event(); |
nothing calls this directly
no test coverage detected