Home | History | Annotate | Download | only in login

Lines Matching refs:image

77 // best one to set for the desired image resolution.
468 // image to get the same aspect ratio and scale the result.
482 SkBitmap image;
486 image.setConfig(SkBitmap::kARGB_8888_Config, desired_width, desired_height);
487 image.allocPixels();
489 SkAutoLockPixels lock_image(image);
490 // We should reflect the image from the Y axis depending on the value of
496 dst_x_origin = image.width() - 1;
498 dst_y_increment = 2 * image.width();
500 uint32_t* dst = image.getAddr32(dst_x_origin, 0);
504 for (int y = 0; y < image.height(); ++y) {
506 for (int x = 0; x < image.width(); x += 2) {
521 if (image.width() < desired_width_ || image.height() < desired_height_) {
522 image = skia::ImageOperations::Resize(
523 image,
528 image.setIsOpaque(true);
531 frame_image_.swap(image);