| 178 | TaskGraphSystem* Video::System = nullptr; |
| 179 | |
| 180 | void VideoSystem::Execute(TaskGraph* graph) |
| 181 | { |
| 182 | PROFILE_CPU_NAMED("Video.Update"); |
| 183 | PROFILE_MEM(Video); |
| 184 | |
| 185 | // Update backends |
| 186 | for (VideoBackend*& backend : VideoServiceInstance.Backends) |
| 187 | { |
| 188 | if (backend) |
| 189 | backend->Base_Update(graph); |
| 190 | } |
| 191 | } |
| 192 | |
| 193 | bool VideoService::Init() |
| 194 | { |
nothing calls this directly
no test coverage detected