| 298 | } |
| 299 | |
| 300 | void GLStateCacheManager::setDepthFunc(GLenum func) |
| 301 | { |
| 302 | #ifdef OGRE_ENABLE_STATE_CACHE |
| 303 | if(mDepthFunc != func) |
| 304 | #endif |
| 305 | { |
| 306 | mDepthFunc = func; |
| 307 | |
| 308 | glDepthFunc(func); |
| 309 | } |
| 310 | } |
| 311 | |
| 312 | void GLStateCacheManager::setClearDepth(GLclampf depth) |
| 313 | { |
no outgoing calls
no test coverage detected