| 200 | } |
| 201 | |
| 202 | void OGLContext::SetStencilTestEnabled(bool enabled) |
| 203 | { |
| 204 | if (enabled) |
| 205 | GLFunctions::glEnable(gl_const::GLStencilTest); |
| 206 | else |
| 207 | GLFunctions::glDisable(gl_const::GLStencilTest); |
| 208 | } |
| 209 | |
| 210 | void OGLContext::SetStencilFunction(StencilFace face, TestFunction stencilFunction) |
| 211 | { |
no outgoing calls
no test coverage detected