Lines Matching defs:bitmap
375 static bool convertBitmapToXImage(XImage& image, const SkBitmap& bitmap) {
378 int bitsPerPixel = bitmap.bytesPerPixel() * 8;
379 image.width = bitmap.width();
380 image.height = bitmap.height();
382 image.data = (char*) bitmap.getPixels();
388 image.bytes_per_line = bitmap.rowBytes() - bitmap.width() * 4;
401 // Draw the bitmap to the screen.
402 const SkBitmap& bitmap = getBitmap();
403 int width = bitmap.width();
404 int height = bitmap.height();
407 if (!convertBitmapToXImage(image, bitmap)) {