| 28 | GpuEvent::~GpuEvent() {} |
| 29 | |
| 30 | port::Status GpuEvent::Init() { |
| 31 | return GpuDriver::InitEvent(parent_->gpu_context(), &gpu_event_, |
| 32 | GpuDriver::EventFlags::kDisableTiming); |
| 33 | } |
| 34 | |
| 35 | port::Status GpuEvent::Destroy() { |
| 36 | return GpuDriver::DestroyEvent(parent_->gpu_context(), &gpu_event_); |
nothing calls this directly
no test coverage detected