Home | History | Annotate | Download | only in unix

Lines Matching defs:bitmap

385 static bool convertBitmapToXImage(XImage& image, const SkBitmap& bitmap) {
388 int bitsPerPixel = bitmap.bytesPerPixel() * 8;
389 image.width = bitmap.width();
390 image.height = bitmap.height();
392 image.data = (char*) bitmap.getPixels();
398 image.bytes_per_line = bitmap.rowBytes() - bitmap.width() * 4;
411 // Draw the bitmap to the screen.
412 const SkBitmap& bitmap = getBitmap();
413 int width = bitmap.width();
414 int height = bitmap.height();
417 if (!convertBitmapToXImage(image, bitmap)) {