| 892 | } |
| 893 | |
| 894 | void GL46Engine::GetViewport(int32_t& x, int32_t& y, int32_t& w, int32_t& h) const |
| 895 | { |
| 896 | int32_t param[4]; |
| 897 | glGetIntegerv(GL_VIEWPORT, param); |
| 898 | x = param[0]; |
| 899 | y = param[1]; |
| 900 | w = param[2]; |
| 901 | h = param[3]; |
| 902 | } |
| 903 | |
| 904 | void GL46Engine::SetDepthRange(float zmin, float zmax) |
| 905 | { |
no test coverage detected