Searched refs:texId_ (Results 1 - 1 of 1) sorted by relevance

/external/opencv3/modules/core/src/
H A Dopengl.cpp856 GLuint texId() const { return texId_; }
861 GLuint texId_; member in class:cv::ogl::Texture2D::Impl
871 cv::ogl::Texture2D::Impl::Impl() : texId_(0), autoRelease_(false)
875 cv::ogl::Texture2D::Impl::Impl(GLuint atexId, bool autoRelease) : texId_(atexId), autoRelease_(autoRelease)
880 cv::ogl::Texture2D::Impl::Impl(GLint internalFormat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid* pixels, bool autoRelease) : texId_(0), autoRelease_(autoRelease)
882 gl::GenTextures(1, &texId_);
885 CV_Assert(texId_ != 0);
887 gl::BindTexture(gl::TEXTURE_2D, texId_);
902 if (autoRelease_ && texId_)
903 gl::DeleteTextures(1, &texId_);
[all...]

Completed in 98 milliseconds