| 279 | } |
| 280 | |
| 281 | void VideoBackendAV::Base_Update(TaskGraph* graph) |
| 282 | { |
| 283 | // Schedule work to update all videos in async |
| 284 | Function<void(int32)> job; |
| 285 | job.Bind(AV::UpdatePlayer); |
| 286 | graph->DispatchJob(job, AV::Players.Count()); |
| 287 | } |
| 288 | |
| 289 | void VideoBackendAV::Base_Dispose() |
| 290 | { |
nothing calls this directly
no test coverage detected