OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "base/basictypes.h" |
| 6 #include "gfx/blit.h" |
| 7 #include "skia/ext/platform_canvas.h" |
| 8 #include "testing/gtest/include/gtest/gtest.h" |
| 9 |
| 10 namespace { |
| 11 |
| 12 // Fills the given canvas with the values by duplicating the values into each |
| 13 // color channel for the corresponding pixel. |
| 14 // |
| 15 // Example values = {{0x0, 0x01}, {0x12, 0xFF}} would give a canvas with: |
| 16 // 0x00000000 0x01010101 |
| 17 // 0x12121212 0xFFFFFFFF |
| 18 template<int w, int h> |
| 19 void SetToCanvas(skia::PlatformCanvas* canvas, uint8 values[h][w]) { |
| 20 SkBitmap& bitmap = const_cast<SkBitmap&>( |
| 21 canvas->getTopPlatformDevice().accessBitmap(true)); |
| 22 SkAutoLockPixels lock(bitmap); |
| 23 ASSERT_EQ(w, bitmap.width()); |
| 24 ASSERT_EQ(h, bitmap.height()); |
| 25 |
| 26 for (int y = 0; y < h; y++) { |
| 27 for (int x = 0; x < w; x++) { |
| 28 uint8 value = values[y][x]; |
| 29 *bitmap.getAddr32(x, y) = |
| 30 (value << 24) | (value << 16) | (value << 8) | value; |
| 31 } |
| 32 } |
| 33 } |
| 34 |
| 35 // Checks each pixel in the given canvas and see if it is made up of the given |
| 36 // values, where each value has been duplicated into each channel of the given |
| 37 // bitmap (see SetToCanvas above). |
| 38 template<int w, int h> |
| 39 void VerifyCanvasValues(skia::PlatformCanvas* canvas, uint8 values[h][w]) { |
| 40 SkBitmap& bitmap = const_cast<SkBitmap&>( |
| 41 canvas->getTopPlatformDevice().accessBitmap(true)); |
| 42 SkAutoLockPixels lock(bitmap); |
| 43 ASSERT_EQ(w, bitmap.width()); |
| 44 ASSERT_EQ(h, bitmap.height()); |
| 45 |
| 46 for (int y = 0; y < h; y++) { |
| 47 for (int x = 0; x < w; x++) { |
| 48 uint8 value = values[y][x]; |
| 49 uint32 expected = |
| 50 (value << 24) | (value << 16) | (value << 8) | value; |
| 51 ASSERT_EQ(expected, *bitmap.getAddr32(x, y)); |
| 52 } |
| 53 } |
| 54 } |
| 55 |
| 56 } // namespace |
| 57 |
| 58 TEST(Blit, ScrollBasic) { |
| 59 static const int kCanvasWidth = 5; |
| 60 static const int kCanvasHeight = 5; |
| 61 skia::PlatformCanvas canvas(kCanvasWidth, kCanvasHeight, true); |
| 62 uint8 initial_values[kCanvasHeight][kCanvasWidth] = { |
| 63 { 0x00, 0x01, 0x02, 0x03, 0x04 }, |
| 64 { 0x10, 0x11, 0x12, 0x13, 0x14 }, |
| 65 { 0x20, 0x21, 0x22, 0x23, 0x24 }, |
| 66 { 0x30, 0x31, 0x32, 0x33, 0x34 }, |
| 67 { 0x40, 0x41, 0x42, 0x43, 0x44 }}; |
| 68 SetToCanvas<5, 5>(&canvas, initial_values); |
| 69 |
| 70 // Sanity check on input. |
| 71 VerifyCanvasValues<5, 5>(&canvas, initial_values); |
| 72 |
| 73 // Scroll none and make sure it's a NOP. |
| 74 gfx::ScrollCanvas(&canvas, |
| 75 gfx::Rect(0, 0, kCanvasWidth, kCanvasHeight), |
| 76 gfx::Point(0, 0)); |
| 77 |
| 78 // Scroll the center 3 pixels up one. |
| 79 gfx::Rect center_three(1, 1, 3, 3); |
| 80 gfx::ScrollCanvas(&canvas, center_three, gfx::Point(0, -1)); |
| 81 uint8 scroll_up_expected[kCanvasHeight][kCanvasWidth] = { |
| 82 { 0x00, 0x01, 0x02, 0x03, 0x04 }, |
| 83 { 0x10, 0x21, 0x22, 0x23, 0x14 }, |
| 84 { 0x20, 0x31, 0x32, 0x33, 0x24 }, |
| 85 { 0x30, 0x31, 0x32, 0x33, 0x34 }, |
| 86 { 0x40, 0x41, 0x42, 0x43, 0x44 }}; |
| 87 VerifyCanvasValues<5, 5>(&canvas, scroll_up_expected); |
| 88 |
| 89 // Reset and scroll the center 3 pixels down one. |
| 90 SetToCanvas<5, 5>(&canvas, initial_values); |
| 91 gfx::ScrollCanvas(&canvas, center_three, gfx::Point(0, 1)); |
| 92 uint8 scroll_down_expected[kCanvasHeight][kCanvasWidth] = { |
| 93 { 0x00, 0x01, 0x02, 0x03, 0x04 }, |
| 94 { 0x10, 0x11, 0x12, 0x13, 0x14 }, |
| 95 { 0x20, 0x11, 0x12, 0x13, 0x24 }, |
| 96 { 0x30, 0x21, 0x22, 0x23, 0x34 }, |
| 97 { 0x40, 0x41, 0x42, 0x43, 0x44 }}; |
| 98 VerifyCanvasValues<5, 5>(&canvas, scroll_down_expected); |
| 99 |
| 100 // Reset and scroll the center 3 pixels right one. |
| 101 SetToCanvas<5, 5>(&canvas, initial_values); |
| 102 gfx::ScrollCanvas(&canvas, center_three, gfx::Point(1, 0)); |
| 103 uint8 scroll_right_expected[kCanvasHeight][kCanvasWidth] = { |
| 104 { 0x00, 0x01, 0x02, 0x03, 0x04 }, |
| 105 { 0x10, 0x11, 0x11, 0x12, 0x14 }, |
| 106 { 0x20, 0x21, 0x21, 0x22, 0x24 }, |
| 107 { 0x30, 0x31, 0x31, 0x32, 0x34 }, |
| 108 { 0x40, 0x41, 0x42, 0x43, 0x44 }}; |
| 109 VerifyCanvasValues<5, 5>(&canvas, scroll_right_expected); |
| 110 |
| 111 // Reset and scroll the center 3 pixels left one. |
| 112 SetToCanvas<5, 5>(&canvas, initial_values); |
| 113 gfx::ScrollCanvas(&canvas, center_three, gfx::Point(-1, 0)); |
| 114 uint8 scroll_left_expected[kCanvasHeight][kCanvasWidth] = { |
| 115 { 0x00, 0x01, 0x02, 0x03, 0x04 }, |
| 116 { 0x10, 0x12, 0x13, 0x13, 0x14 }, |
| 117 { 0x20, 0x22, 0x23, 0x23, 0x24 }, |
| 118 { 0x30, 0x32, 0x33, 0x33, 0x34 }, |
| 119 { 0x40, 0x41, 0x42, 0x43, 0x44 }}; |
| 120 VerifyCanvasValues<5, 5>(&canvas, scroll_left_expected); |
| 121 |
| 122 // Diagonal scroll. |
| 123 SetToCanvas<5, 5>(&canvas, initial_values); |
| 124 gfx::ScrollCanvas(&canvas, center_three, gfx::Point(2, 2)); |
| 125 uint8 scroll_diagonal_expected[kCanvasHeight][kCanvasWidth] = { |
| 126 { 0x00, 0x01, 0x02, 0x03, 0x04 }, |
| 127 { 0x10, 0x11, 0x12, 0x13, 0x14 }, |
| 128 { 0x20, 0x21, 0x22, 0x23, 0x24 }, |
| 129 { 0x30, 0x31, 0x32, 0x11, 0x34 }, |
| 130 { 0x40, 0x41, 0x42, 0x43, 0x44 }}; |
| 131 VerifyCanvasValues<5, 5>(&canvas, scroll_diagonal_expected); |
| 132 } |
OLD | NEW |