Lines Matching defs:bitmap
408 static bool convertBitmapToXImage(XImage& image, const SkBitmap& bitmap) {
411 int bitsPerPixel = bitmap.bytesPerPixel() * 8;
412 image.width = bitmap.width();
413 image.height = bitmap.height();
415 image.data = (char*) bitmap.getPixels();
421 image.bytes_per_line = bitmap.rowBytes() - bitmap.width() * 4;
434 // Draw the bitmap to the screen.
435 const SkBitmap& bitmap = getBitmap();
436 int width = bitmap.width();
437 int height = bitmap.height();
440 if (!convertBitmapToXImage(image, bitmap)) {