| 476 | #endif // HAVE_OPENGL |
| 477 | |
| 478 | cv::ogl::Buffer::Buffer() : rows_(0), cols_(0), type_(0) |
| 479 | { |
| 480 | #ifndef HAVE_OPENGL |
| 481 | throw_nogl(); |
| 482 | #else |
| 483 | impl_ = Impl::empty(); |
| 484 | #endif |
| 485 | } |
| 486 | |
| 487 | cv::ogl::Buffer::Buffer(int arows, int acols, int atype, unsigned int abufId, bool autoRelease) : rows_(0), cols_(0), type_(0) |
| 488 | { |
nothing calls this directly
no test coverage detected