| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "cc/test/skia_common.h" | 5 #include "cc/test/skia_common.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include "cc/playback/display_item_list.h" | 9 #include "cc/playback/display_item_list.h" |
| 10 #include "third_party/skia/include/core/SkCanvas.h" | 10 #include "third_party/skia/include/core/SkCanvas.h" |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 | 42 |
| 43 void DrawDisplayList(unsigned char* buffer, | 43 void DrawDisplayList(unsigned char* buffer, |
| 44 const gfx::Rect& layer_rect, | 44 const gfx::Rect& layer_rect, |
| 45 scoped_refptr<const DisplayItemList> list) { | 45 scoped_refptr<const DisplayItemList> list) { |
| 46 SkImageInfo info = | 46 SkImageInfo info = |
| 47 SkImageInfo::MakeN32Premul(layer_rect.width(), layer_rect.height()); | 47 SkImageInfo::MakeN32Premul(layer_rect.width(), layer_rect.height()); |
| 48 SkBitmap bitmap; | 48 SkBitmap bitmap; |
| 49 bitmap.installPixels(info, buffer, info.minRowBytes()); | 49 bitmap.installPixels(info, buffer, info.minRowBytes()); |
| 50 SkCanvas canvas(bitmap); | 50 SkCanvas canvas(bitmap); |
| 51 canvas.clipRect(gfx::RectToSkRect(layer_rect)); | 51 canvas.clipRect(gfx::RectToSkRect(layer_rect)); |
| 52 list->Raster(&canvas, NULL, gfx::Rect(), 1.0f); | 52 list->Raster(&canvas, NULL, layer_rect, 1.0f); |
| 53 } | 53 } |
| 54 | 54 |
| 55 bool AreDisplayListDrawingResultsSame(const gfx::Rect& layer_rect, | 55 bool AreDisplayListDrawingResultsSame(const gfx::Rect& layer_rect, |
| 56 const DisplayItemList* list_a, | 56 const DisplayItemList* list_a, |
| 57 const DisplayItemList* list_b) { | 57 const DisplayItemList* list_b) { |
| 58 const size_t pixel_size = 4 * layer_rect.size().GetArea(); | 58 const size_t pixel_size = 4 * layer_rect.size().GetArea(); |
| 59 | 59 |
| 60 std::unique_ptr<unsigned char[]> pixels_a(new unsigned char[pixel_size]); | 60 std::unique_ptr<unsigned char[]> pixels_a(new unsigned char[pixel_size]); |
| 61 std::unique_ptr<unsigned char[]> pixels_b(new unsigned char[pixel_size]); | 61 std::unique_ptr<unsigned char[]> pixels_b(new unsigned char[pixel_size]); |
| 62 memset(pixels_a.get(), 0, pixel_size); | 62 memset(pixels_a.get(), 0, pixel_size); |
| 63 memset(pixels_b.get(), 0, pixel_size); | 63 memset(pixels_b.get(), 0, pixel_size); |
| 64 DrawDisplayList(pixels_a.get(), layer_rect, list_a); | 64 DrawDisplayList(pixels_a.get(), layer_rect, list_a); |
| 65 DrawDisplayList(pixels_b.get(), layer_rect, list_b); | 65 DrawDisplayList(pixels_b.get(), layer_rect, list_b); |
| 66 | 66 |
| 67 return !memcmp(pixels_a.get(), pixels_b.get(), pixel_size); | 67 return !memcmp(pixels_a.get(), pixels_b.get(), pixel_size); |
| 68 } | 68 } |
| 69 | 69 |
| 70 sk_sp<SkImage> CreateDiscardableImage(const gfx::Size& size) { | 70 sk_sp<SkImage> CreateDiscardableImage(const gfx::Size& size) { |
| 71 return SkImage::MakeFromGenerator(new TestImageGenerator( | 71 return SkImage::MakeFromGenerator(new TestImageGenerator( |
| 72 SkImageInfo::MakeN32Premul(size.width(), size.height()))); | 72 SkImageInfo::MakeN32Premul(size.width(), size.height()))); |
| 73 } | 73 } |
| 74 | 74 |
| 75 } // namespace cc | 75 } // namespace cc |
| OLD | NEW |