| 915 | } |
| 916 | |
| 917 | bool GL46Engine::Resize(uint32_t w, uint32_t h) |
| 918 | { |
| 919 | mXSize = w; |
| 920 | mYSize = h; |
| 921 | int32_t param[4]; |
| 922 | glGetIntegerv(GL_VIEWPORT, param); |
| 923 | glViewport(param[0], param[1], static_cast<GLint>(w), static_cast<GLint>(h)); |
| 924 | return true; |
| 925 | } |
| 926 | |
| 927 | void GL46Engine::ClearColorBuffer() |
| 928 | { |
no test coverage detected