| 126 | } |
| 127 | |
| 128 | void BaseManager::drawOneFrame() |
| 129 | { |
| 130 | const float clearColor[] = {0.0f, 0.0f, 0.0f, 1.0f}; |
| 131 | mDeviceContext->ClearRenderTargetView(mRenderTarget, clearColor); |
| 132 | mPlatform->getRenderManagerPtr()->drawOneFrame(); |
| 133 | mSwapChain->Present(0, 0); |
| 134 | } |
| 135 | |
| 136 | void BaseManager::resizeRender(int _width, int _height) |
| 137 | { |
nothing calls this directly
no test coverage detected