///////////////////////////////////////////////////////
| 83 | |
| 84 | //////////////////////////////////////////////////////////// |
| 85 | void WindowBase::create(VideoMode mode, const String& title, std::uint32_t style, State state) |
| 86 | { |
| 87 | // Recreate the window implementation |
| 88 | m_impl = priv::WindowImpl::create(mode, |
| 89 | title, |
| 90 | style, |
| 91 | state, |
| 92 | ContextSettings{/* depthBits */ 0, |
| 93 | /* stencilBits */ 0, |
| 94 | /* antiAliasingLevel */ 0, |
| 95 | /* majorVersion */ 0, |
| 96 | /* minorVersion */ 0, |
| 97 | /* attributeFlags */ 0xFFFFFFFF, |
| 98 | /* sRgbCapable */ false}); |
| 99 | |
| 100 | // Perform common initializations |
| 101 | initialize(); |
| 102 | } |
| 103 | |
| 104 | |
| 105 | //////////////////////////////////////////////////////////// |
nothing calls this directly
no test coverage detected