Searched refs:texId_ (Results 1 – 1 of 1) sorted by relevance
/external/opencv3/modules/core/src/ |
D | opengl.cpp | 856 GLuint texId() const { return texId_; } in texId() 861 GLuint texId_; member in cv::ogl::Texture2D::Impl 871 cv::ogl::Texture2D::Impl::Impl() : texId_(0), autoRelease_(false) in Impl() 875 cv::ogl::Texture2D::Impl::Impl(GLuint atexId, bool autoRelease) : texId_(atexId), autoRelease_(auto… in Impl() 880 …t, GLenum format, GLenum type, const GLvoid* pixels, bool autoRelease) : texId_(0), autoRelease_(a… in Impl() 882 gl::GenTextures(1, &texId_); in Impl() 885 CV_Assert(texId_ != 0); in Impl() 887 gl::BindTexture(gl::TEXTURE_2D, texId_); in Impl() 902 if (autoRelease_ && texId_) in ~Impl() 903 gl::DeleteTextures(1, &texId_); in ~Impl() [all …]
|