Home | History | Annotate | Download | only in core

Lines Matching defs:rows_

275     int rows_;
396 int rows_;
542 cv::ogl::Buffer::Buffer(int arows, int acols, int atype, Target target, bool autoRelease) : rows_(0), cols_(0), type_(0)
548 cv::ogl::Buffer::Buffer(Size asize, int atype, Target target, bool autoRelease) : rows_(0), cols_(0), type_(0)
562 return rows_;
574 return Size(cols_, rows_);
580 return rows_ == 0 || cols_ == 0;
616 cv::ogl::Texture2D::Texture2D(int arows, int acols, Format aformat, bool autoRelease) : rows_(0), cols_(0), format_(NONE)
622 cv::ogl::Texture2D::Texture2D(Size asize, Format aformat, bool autoRelease) : rows_(0), cols_(0), format_(NONE)
636 return rows_;
648 return Size(cols_, rows_);
654 return rows_ == 0 || cols_ == 0;