Searched defs:aformat (Results 1 - 2 of 2) sorted by relevance

/external/opencv3/modules/core/include/opencv2/core/
H A Dopengl.hpp303 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);
311 @param aformat Image format. See cv::ogl::Texture2D::Format .
314 Texture2D(int arows, int acols, Format aformat, bool autoRelease = false);
318 @param aformat Image format. See cv::ogl::Texture2D::Format .
321 Texture2D(Size asize, Format aformat, bool autoRelease = false);
333 @param aformat Image format. See cv::ogl::Texture2D::Format .
336 void create(int arows, int acols, Format aformat, bool autoRelease = false);
339 @param aformat Image format. See cv::ogl::Texture2D::Format .
342 void create(Size asize, Format aformat, boo
616 Texture2D(int arows, int acols, Format aformat, bool autoRelease) argument
622 Texture2D(Size asize, Format aformat, bool autoRelease) argument
628 create(Size asize, Format aformat, bool autoRelease) argument
[all...]
/external/opencv3/modules/core/src/
H A Dopengl.cpp950 cv::ogl::Texture2D::Texture2D(int arows, int acols, Format aformat, unsigned int atexId, bool autoRelease) : rows_(0), cols_(0), format_(NONE) argument
955 (void) aformat;
963 format_ = aformat;
967 cv::ogl::Texture2D::Texture2D(Size asize, Format aformat, unsigned int atexId, bool autoRelease) : rows_(0), cols_(0), format_(NONE) argument
971 (void) aformat;
979 format_ = aformat;
1053 void cv::ogl::Texture2D::create(int arows, int acols, Format aformat, bool autoRelease) argument
1058 (void) aformat;
1062 if (rows_ != arows || cols_ != acols || format_ != aformat)
1065 impl_.reset(new Impl(aformat, acol
[all...]

Completed in 97 milliseconds