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

Method Draw

Source/Engine/GraphicsDevice/Null/GPUDeviceNull.cpp:75–92  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

73}
74
75void GPUDeviceNull::Draw()
76{
77 DrawBegin();
78
79 auto context = GetMainContext();
80
81 RenderBegin();
82 GetTasksManager()->FrameBegin();
83 context->FrameBegin();
84
85 // don't render anything
86
87 context->FrameEnd();
88 GetTasksManager()->FrameEnd();
89 RenderEnd();
90
91 DrawEnd();
92}
93
94void GPUDeviceNull::Dispose()
95{

Callers

nothing calls this directly

Calls 2

FrameBeginMethod · 0.45
FrameEndMethod · 0.45

Tested by

no test coverage detected