| 73 | } |
| 74 | |
| 75 | void 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 | |
| 94 | void GPUDeviceNull::Dispose() |
| 95 | { |
nothing calls this directly
no test coverage detected