| 258 | } |
| 259 | |
| 260 | void StreamingSystem::Execute(TaskGraph* graph) |
| 261 | { |
| 262 | if (Resources.Count() == 0 || GPUDevice::Instance->GetState() != GPUDevice::DeviceState::Ready) |
| 263 | return; |
| 264 | |
| 265 | // Schedule work to update all storage containers in async |
| 266 | Function<void(int32)> job; |
| 267 | job.Bind<StreamingSystem, &StreamingSystem::Job>(this); |
| 268 | graph->DispatchJob(job, 1); |
| 269 | } |
| 270 | |
| 271 | StreamingStats Streaming::GetStats() |
| 272 | { |
nothing calls this directly
no test coverage detected