| 187 | } |
| 188 | |
| 189 | void OGLContext::SetDepthTestEnabled(bool enabled) |
| 190 | { |
| 191 | if (enabled) |
| 192 | GLFunctions::glEnable(gl_const::GLDepthTest); |
| 193 | else |
| 194 | GLFunctions::glDisable(gl_const::GLDepthTest); |
| 195 | } |
| 196 | |
| 197 | void OGLContext::SetDepthTestFunction(TestFunction depthFunction) |
| 198 | { |
no outgoing calls
no test coverage detected