Home
last modified time | relevance | path

Searched refs:autoRelease (Results 1 – 2 of 2) sorted by relevance

/external/opencv3/modules/core/include/opencv2/core/
Dopengl.hpp112 Buffer(int arows, int acols, int atype, unsigned int abufId, bool autoRelease = false);
120 Buffer(Size asize, int atype, unsigned int abufId, bool autoRelease = false);
129 Buffer(int arows, int acols, int atype, Target target = ARRAY_BUFFER, bool autoRelease = false);
137 Buffer(Size asize, int atype, Target target = ARRAY_BUFFER, bool autoRelease = false);
144 explicit Buffer(InputArray arr, Target target = ARRAY_BUFFER, bool autoRelease = false);
154 …void create(int arows, int acols, int atype, Target target = ARRAY_BUFFER, bool autoRelease = fals…
162 void create(Size asize, int atype, Target target = ARRAY_BUFFER, bool autoRelease = false);
186 void copyFrom(InputArray arr, Target target = ARRAY_BUFFER, bool autoRelease = false);
189 …From(InputArray arr, cuda::Stream& stream, Target target = ARRAY_BUFFER, bool autoRelease = false);
206 Buffer clone(Target target = ARRAY_BUFFER, bool autoRelease = false) const;
[all …]
/external/opencv3/modules/core/src/
Dopengl.cpp301 Impl(GLuint bufId, bool autoRelease);
302 Impl(GLsizeiptr size, const GLvoid* data, GLenum target, bool autoRelease);
348 cv::ogl::Buffer::Impl::Impl(GLuint abufId, bool autoRelease) : bufId_(abufId), autoRelease_(autoRel… in Impl() argument
353 …iptr size, const GLvoid* data, GLenum target, bool autoRelease) : bufId_(0), autoRelease_(autoRele… in Impl() argument
466 cv::ogl::Buffer::Buffer(int arows, int acols, int atype, unsigned int abufId, bool autoRelease) : r… in Buffer() argument
473 (void) autoRelease; in Buffer()
476 impl_.reset(new Impl(abufId, autoRelease)); in Buffer()
483 cv::ogl::Buffer::Buffer(Size asize, int atype, unsigned int abufId, bool autoRelease) : rows_(0), c… in Buffer() argument
489 (void) autoRelease; in Buffer()
492 impl_.reset(new Impl(abufId, autoRelease)); in Buffer()
[all …]