MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / Execute

Method Execute

Source/Engine/Video/Video.cpp:180–191  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

178TaskGraphSystem* Video::System = nullptr;
179
180void 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
193bool VideoService::Init()
194{

Callers

nothing calls this directly

Calls 1

Base_UpdateMethod · 0.45

Tested by

no test coverage detected