Lines Matching refs:getHeight

76   if (wrapper_->getWidth () != width && wrapper_->getHeight () != height)  in fillRGB()
78 if (width > wrapper_->getWidth () || height > wrapper_->getHeight () ) in fillRGB()
79 …ted. Request was: %d x %d -> %d x %d", wrapper_->getWidth (), wrapper_->getHeight (), width, heigh… in fillRGB()
81 if ( wrapper_->getWidth () % width != 0 || wrapper_->getHeight () % height != 0 in fillRGB()
82 || (wrapper_->getWidth () / width) & 0x01 || (wrapper_->getHeight () / height & 0x01) ) in fillRGB()
83 …ons. Request was %d x %d -> %d x %d.", wrapper_->getWidth (), wrapper_->getHeight (), width, heigh… in fillRGB()
92 if (wrapper_->getWidth () == width && wrapper_->getHeight () == height) in fillRGB()
115 unsigned yuv_skip = (wrapper_->getHeight () / height - 1) * ( wrapper_->getWidth () << 1 ); in fillRGB()
117 …for (unsigned yIdx = 0; yIdx < wrapper_->getHeight (); yIdx += yuv_step, yuv_buffer += yuv_skip, r… in fillRGB()
137 if (width > wrapper_->getWidth () || height > wrapper_->getHeight ()) in fillGrayscale()
138 …ted. Request was: %d x %d -> %d x %d", wrapper_->getWidth (), wrapper_->getHeight (), width, heigh… in fillGrayscale()
140 if (wrapper_->getWidth () % width != 0 || wrapper_->getHeight () % height != 0) in fillGrayscale()
141 …ons. Request was %d x %d -> %d x %d.", wrapper_->getWidth (), wrapper_->getHeight (), width, heigh… in fillGrayscale()
149 unsigned yuv_skip = (wrapper_->getHeight () / height - 1) * ( wrapper_->getWidth () << 1 ); in fillGrayscale()
152 …for (unsigned yIdx = 0; yIdx < wrapper_->getHeight (); yIdx += yuv_step, yuv_buffer += yuv_skip, g… in fillGrayscale()