Home | History | Annotate | Download | only in win

Lines Matching defs:bitmap

198         const SkBitmap& bitmap = this->getBitmap();
203 bmi.bmiHeader.biWidth = bitmap.width();
204 bmi.bmiHeader.biHeight = -bitmap.height(); // top-down image
217 // seems to be to copy the bitmap to a temporary (contiguous)
219 SkASSERT(bitmap.width() * bitmap.bytesPerPixel() == bitmap.rowBytes());
220 bitmap.lockPixels();
223 bitmap.width(), bitmap.height(),
225 0, bitmap.height(),
226 bitmap.getPixels(),
230 bitmap.unlockPixels();