HomeSort by relevance Sort by last modified time
    Searched defs:skbitmap (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/chrome/browser/android/
favicon_helper.cc 25 #include "third_party/skia/include/core/SkBitmap.h"
50 SkBitmap favicon_bitmap;
74 SkBitmap favicon_bitmap;
202 SkBitmap favicon_bitmap = favicon_image.AsBitmap();
220 SkBitmap skbitmap = gfx::CreateSkBitmapFromJavaBitmap(bitmap_lock); local
221 return color_utils::CalculateKMeanColorOfBitmap(skbitmap);
  /external/chromium_org/ui/gfx/android/
java_bitmap.cc 72 ScopedJavaLocalRef<jobject> ConvertToJavaBitmap(const SkBitmap* skbitmap) {
73 DCHECK(skbitmap);
74 DCHECK(!skbitmap->isNull());
75 SkColorType color_type = skbitmap->colorType();
79 skbitmap->width(), skbitmap->height(), color_type);
80 SkAutoLockPixels src_lock(*skbitmap);
82 void* src_pixels = skbitmap->getPixels();
84 memcpy(dst_pixels, src_pixels, skbitmap->getSize())
119 SkBitmap skbitmap; local
    [all...]
  /external/chromium_org/cc/layers/
painted_scrollbar_layer.cc 16 #include "third_party/skia/include/core/SkBitmap.h"
266 SkBitmap skbitmap; local
267 skbitmap.allocN32Pixels(content_rect.width(), content_rect.height());
268 SkCanvas skcanvas(skbitmap);
290 skbitmap.setImmutable();
292 return UIResourceBitmap(skbitmap);

Completed in 367 milliseconds