Searched refs:aformat (Results 1 – 2 of 2) sorted by relevance
/external/opencv3/modules/core/include/opencv2/core/ |
D | opengl.hpp | 303 Texture2D(int arows, int acols, Format aformat, unsigned int atexId, bool autoRelease = false); 306 Texture2D(Size asize, Format aformat, unsigned int atexId, bool autoRelease = false); 314 Texture2D(int arows, int acols, Format aformat, bool autoRelease = false); 321 Texture2D(Size asize, Format aformat, bool autoRelease = false); 336 void create(int arows, int acols, Format aformat, bool autoRelease = false); 342 void create(Size asize, Format aformat, bool autoRelease = false); 616 cv::ogl::Texture2D::Texture2D(int arows, int acols, Format aformat, bool autoRelease) : rows_(0), c… in Texture2D() argument 618 create(arows, acols, aformat, autoRelease); in Texture2D() 622 cv::ogl::Texture2D::Texture2D(Size asize, Format aformat, bool autoRelease) : rows_(0), cols_(0), f… in Texture2D() argument 624 create(asize, aformat, autoRelease); in Texture2D() [all …]
|
/external/opencv3/modules/core/src/ |
D | opengl.cpp | 950 cv::ogl::Texture2D::Texture2D(int arows, int acols, Format aformat, unsigned int atexId, bool autoR… in Texture2D() argument 955 (void) aformat; in Texture2D() 963 format_ = aformat; in Texture2D() 967 cv::ogl::Texture2D::Texture2D(Size asize, Format aformat, unsigned int atexId, bool autoRelease) : … in Texture2D() argument 971 (void) aformat; in Texture2D() 979 format_ = aformat; in Texture2D() 1053 void cv::ogl::Texture2D::create(int arows, int acols, Format aformat, bool autoRelease) in create() argument 1058 (void) aformat; in create() 1062 if (rows_ != arows || cols_ != acols || format_ != aformat) in create() 1065 impl_.reset(new Impl(aformat, acols, arows, aformat, gl::FLOAT, 0, autoRelease)); in create() [all …]
|