| 359 | } |
| 360 | |
| 361 | void GLES2TextureBuffer::copyFromFramebuffer(size_t zoffset) |
| 362 | { |
| 363 | getGLES2RenderSystem()->_getStateCacheManager()->bindGLTexture(mTarget, mTextureID); |
| 364 | OGRE_CHECK_GL_ERROR(glCopyTexSubImage2D(mFaceTarget, mLevel, 0, 0, 0, 0, mWidth, mHeight)); |
| 365 | } |
| 366 | |
| 367 | //----------------------------------------------------------------------------- |
| 368 | void GLES2TextureBuffer::blit(const HardwarePixelBufferSharedPtr &src, const Box &srcBox, const Box &dstBox) |
nothing calls this directly
no test coverage detected