| 32 | } |
| 33 | |
| 34 | Window::~Window() |
| 35 | { |
| 36 | #if defined(GTE_USE_DIRECTX) |
| 37 | if (mEngine) |
| 38 | { |
| 39 | auto dxengine = std::static_pointer_cast<DX11Engine>(mEngine); |
| 40 | dxengine->ExitFullscreen(); |
| 41 | } |
| 42 | #endif |
| 43 | } |
| 44 | |
| 45 | Window::Window(Parameters& parameters) |
| 46 | : |
nothing calls this directly
no test coverage detected