| 219 | } |
| 220 | |
| 221 | void GLES2StateCacheManager::bindGLTexture(GLenum target, GLuint texture) |
| 222 | { |
| 223 | mLastBoundTexID = texture; |
| 224 | |
| 225 | // Update GL |
| 226 | OGRE_CHECK_GL_ERROR(glBindTexture(target, texture)); |
| 227 | } |
| 228 | |
| 229 | bool GLES2StateCacheManager::activateGLTextureUnit(size_t unit) |
| 230 | { |
no outgoing calls
no test coverage detected