| 573 | } |
| 574 | |
| 575 | void VideoBackendAndroid::Base_Update(TaskGraph* graph) |
| 576 | { |
| 577 | // Schedule work to update all videos in async |
| 578 | Function<void(int32)> job; |
| 579 | job.Bind(Android::UpdatePlayer); |
| 580 | graph->DispatchJob(job, Android::Players.Count()); |
| 581 | } |
| 582 | |
| 583 | void VideoBackendAndroid::Base_Dispose() |
| 584 | { |
nothing calls this directly
no test coverage detected