bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2011 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 8 | #include "SkCanvas.h" |
bsalomon@google.com | cf8fb1f | 2012-08-02 14:03:32 +0000 | [diff] [blame] | 9 | #include "SkColorPriv.h" |
reed@google.com | 4b163ed | 2012-08-07 21:35:13 +0000 | [diff] [blame] | 10 | #include "SkMathPriv.h" |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 11 | #include "SkRegion.h" |
reed | 4af35f3 | 2014-06-27 17:47:49 -0700 | [diff] [blame] | 12 | #include "SkSurface.h" |
tfarina@chromium.org | 4ee16bf | 2014-01-10 22:08:27 +0000 | [diff] [blame] | 13 | #include "Test.h" |
commit-bot@chromium.org | 4cd9e21 | 2014-03-07 03:25:16 +0000 | [diff] [blame] | 14 | #include "sk_tool_utils.h" |
tfarina@chromium.org | 4ee16bf | 2014-01-10 22:08:27 +0000 | [diff] [blame] | 15 | |
bsalomon@google.com | cf8fb1f | 2012-08-02 14:03:32 +0000 | [diff] [blame] | 16 | #if SK_SUPPORT_GPU |
bsalomon@google.com | 67b915d | 2013-02-04 16:13:32 +0000 | [diff] [blame] | 17 | #include "GrContextFactory.h" |
tfarina@chromium.org | 8f6884a | 2014-01-24 20:56:26 +0000 | [diff] [blame] | 18 | #include "SkGpuDevice.h" |
bsalomon@google.com | cf8fb1f | 2012-08-02 14:03:32 +0000 | [diff] [blame] | 19 | #else |
| 20 | class GrContext; |
bsalomon@google.com | 67b915d | 2013-02-04 16:13:32 +0000 | [diff] [blame] | 21 | class GrContextFactory; |
bsalomon@google.com | cf8fb1f | 2012-08-02 14:03:32 +0000 | [diff] [blame] | 22 | #endif |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 23 | |
| 24 | static const int DEV_W = 100, DEV_H = 100; |
| 25 | static const SkIRect DEV_RECT = SkIRect::MakeWH(DEV_W, DEV_H); |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 26 | static const SkRect DEV_RECT_S = SkRect::MakeWH(DEV_W * SK_Scalar1, |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 27 | DEV_H * SK_Scalar1); |
| 28 | static const U8CPU DEV_PAD = 0xee; |
| 29 | |
commit-bot@chromium.org | ddf94cf | 2013-10-12 17:25:17 +0000 | [diff] [blame] | 30 | static SkPMColor getCanvasColor(int x, int y) { |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 31 | SkASSERT(x >= 0 && x < DEV_W); |
| 32 | SkASSERT(y >= 0 && y < DEV_H); |
| 33 | |
| 34 | U8CPU r = x; |
| 35 | U8CPU g = y; |
| 36 | U8CPU b = 0xc; |
| 37 | |
bsalomon@google.com | 31648eb | 2011-11-23 15:01:08 +0000 | [diff] [blame] | 38 | U8CPU a = 0x0; |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 39 | switch ((x+y) % 5) { |
| 40 | case 0: |
| 41 | a = 0xff; |
| 42 | break; |
| 43 | case 1: |
| 44 | a = 0x80; |
| 45 | break; |
| 46 | case 2: |
| 47 | a = 0xCC; |
| 48 | break; |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 49 | case 3: |
| 50 | a = 0x00; |
| 51 | break; |
bsalomon@google.com | 31648eb | 2011-11-23 15:01:08 +0000 | [diff] [blame] | 52 | case 4: |
| 53 | a = 0x01; |
| 54 | break; |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 55 | } |
| 56 | return SkPremultiplyARGBInline(a, r, g, b); |
| 57 | } |
| 58 | |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 59 | // assumes any premu/.unpremul has been applied |
reed@google.com | 7111d46 | 2014-03-25 16:20:24 +0000 | [diff] [blame] | 60 | static uint32_t packColorType(SkColorType ct, U8CPU a, U8CPU r, U8CPU g, U8CPU b) { |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 61 | uint32_t r32; |
| 62 | uint8_t* result = reinterpret_cast<uint8_t*>(&r32); |
reed@google.com | 7111d46 | 2014-03-25 16:20:24 +0000 | [diff] [blame] | 63 | switch (ct) { |
| 64 | case kBGRA_8888_SkColorType: |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 65 | result[0] = b; |
| 66 | result[1] = g; |
| 67 | result[2] = r; |
| 68 | result[3] = a; |
| 69 | break; |
reed@google.com | 7111d46 | 2014-03-25 16:20:24 +0000 | [diff] [blame] | 70 | case kRGBA_8888_SkColorType: |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 71 | result[0] = r; |
| 72 | result[1] = g; |
| 73 | result[2] = b; |
| 74 | result[3] = a; |
| 75 | break; |
| 76 | default: |
| 77 | SkASSERT(0); |
| 78 | return 0; |
| 79 | } |
| 80 | return r32; |
| 81 | } |
| 82 | |
reed@google.com | 7111d46 | 2014-03-25 16:20:24 +0000 | [diff] [blame] | 83 | static uint32_t getBitmapColor(int x, int y, int w, SkColorType ct, SkAlphaType at) { |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 84 | int n = y * w + x; |
| 85 | U8CPU b = n & 0xff; |
| 86 | U8CPU g = (n >> 8) & 0xff; |
| 87 | U8CPU r = (n >> 16) & 0xff; |
bsalomon@google.com | 31648eb | 2011-11-23 15:01:08 +0000 | [diff] [blame] | 88 | U8CPU a = 0; |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 89 | switch ((x+y) % 5) { |
| 90 | case 4: |
| 91 | a = 0xff; |
| 92 | break; |
| 93 | case 3: |
| 94 | a = 0x80; |
| 95 | break; |
| 96 | case 2: |
| 97 | a = 0xCC; |
| 98 | break; |
| 99 | case 1: |
| 100 | a = 0x01; |
| 101 | break; |
| 102 | case 0: |
| 103 | a = 0x00; |
| 104 | break; |
| 105 | } |
reed@google.com | 7111d46 | 2014-03-25 16:20:24 +0000 | [diff] [blame] | 106 | if (kPremul_SkAlphaType == at) { |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 107 | r = SkMulDiv255Ceiling(r, a); |
| 108 | g = SkMulDiv255Ceiling(g, a); |
| 109 | b = SkMulDiv255Ceiling(b, a); |
| 110 | } |
reed@google.com | 7111d46 | 2014-03-25 16:20:24 +0000 | [diff] [blame] | 111 | return packColorType(ct, a, r, g , b); |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 112 | } |
| 113 | |
commit-bot@chromium.org | ddf94cf | 2013-10-12 17:25:17 +0000 | [diff] [blame] | 114 | static void fillCanvas(SkCanvas* canvas) { |
commit-bot@chromium.org | 4cd9e21 | 2014-03-07 03:25:16 +0000 | [diff] [blame] | 115 | SkBitmap bmp; |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 116 | if (bmp.isNull()) { |
reed | 8482504 | 2014-09-02 12:50:45 -0700 | [diff] [blame] | 117 | bmp.allocN32Pixels(DEV_W, DEV_H); |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 118 | for (int y = 0; y < DEV_H; ++y) { |
| 119 | for (int x = 0; x < DEV_W; ++x) { |
commit-bot@chromium.org | 4cd9e21 | 2014-03-07 03:25:16 +0000 | [diff] [blame] | 120 | *bmp.getAddr32(x, y) = getCanvasColor(x, y); |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 121 | } |
| 122 | } |
| 123 | } |
| 124 | canvas->save(); |
| 125 | canvas->setMatrix(SkMatrix::I()); |
| 126 | canvas->clipRect(DEV_RECT_S, SkRegion::kReplace_Op); |
| 127 | SkPaint paint; |
| 128 | paint.setXfermodeMode(SkXfermode::kSrc_Mode); |
| 129 | canvas->drawBitmap(bmp, 0, 0, &paint); |
| 130 | canvas->restore(); |
| 131 | } |
| 132 | |
reed@google.com | 7111d46 | 2014-03-25 16:20:24 +0000 | [diff] [blame] | 133 | /** |
| 134 | * Lucky for us, alpha is always in the same spot (SK_A32_SHIFT), for both RGBA and BGRA. |
| 135 | * Thus this routine doesn't need to know the exact colortype |
| 136 | */ |
| 137 | static uint32_t premul(uint32_t color) { |
| 138 | unsigned a = SkGetPackedA32(color); |
| 139 | // these next three are not necessarily r,g,b in that order, but they are r,g,b in some order. |
| 140 | unsigned c0 = SkGetPackedR32(color); |
| 141 | unsigned c1 = SkGetPackedG32(color); |
| 142 | unsigned c2 = SkGetPackedB32(color); |
| 143 | c0 = SkMulDiv255Ceiling(c0, a); |
| 144 | c1 = SkMulDiv255Ceiling(c1, a); |
| 145 | c2 = SkMulDiv255Ceiling(c2, a); |
| 146 | return SkPackARGB32NoCheck(a, c0, c1, c2); |
| 147 | } |
| 148 | |
| 149 | static SkPMColor convert_to_PMColor(SkColorType ct, SkAlphaType at, uint32_t color) { |
| 150 | if (kUnpremul_SkAlphaType == at) { |
| 151 | color = premul(color); |
| 152 | } |
| 153 | switch (ct) { |
| 154 | case kRGBA_8888_SkColorType: |
| 155 | color = SkSwizzle_RGBA_to_PMColor(color); |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 156 | break; |
reed@google.com | 7111d46 | 2014-03-25 16:20:24 +0000 | [diff] [blame] | 157 | case kBGRA_8888_SkColorType: |
| 158 | color = SkSwizzle_BGRA_to_PMColor(color); |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 159 | break; |
| 160 | default: |
reed@google.com | 7111d46 | 2014-03-25 16:20:24 +0000 | [diff] [blame] | 161 | SkASSERT(0); |
| 162 | break; |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 163 | } |
reed@google.com | 7111d46 | 2014-03-25 16:20:24 +0000 | [diff] [blame] | 164 | return color; |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 165 | } |
| 166 | |
commit-bot@chromium.org | ddf94cf | 2013-10-12 17:25:17 +0000 | [diff] [blame] | 167 | static bool checkPixel(SkPMColor a, SkPMColor b, bool didPremulConversion) { |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 168 | if (!didPremulConversion) { |
| 169 | return a == b; |
| 170 | } |
| 171 | int32_t aA = static_cast<int32_t>(SkGetPackedA32(a)); |
| 172 | int32_t aR = static_cast<int32_t>(SkGetPackedR32(a)); |
| 173 | int32_t aG = static_cast<int32_t>(SkGetPackedG32(a)); |
| 174 | int32_t aB = SkGetPackedB32(a); |
| 175 | |
| 176 | int32_t bA = static_cast<int32_t>(SkGetPackedA32(b)); |
| 177 | int32_t bR = static_cast<int32_t>(SkGetPackedR32(b)); |
| 178 | int32_t bG = static_cast<int32_t>(SkGetPackedG32(b)); |
| 179 | int32_t bB = static_cast<int32_t>(SkGetPackedB32(b)); |
| 180 | |
| 181 | return aA == bA && |
| 182 | SkAbs32(aR - bR) <= 1 && |
| 183 | SkAbs32(aG - bG) <= 1 && |
| 184 | SkAbs32(aB - bB) <= 1; |
| 185 | } |
| 186 | |
reed | 52d9ac6 | 2014-06-30 09:05:34 -0700 | [diff] [blame] | 187 | static bool check_write(skiatest::Reporter* reporter, SkCanvas* canvas, const SkBitmap& bitmap, |
reed@google.com | 7111d46 | 2014-03-25 16:20:24 +0000 | [diff] [blame] | 188 | int writeX, int writeY) { |
reed | 52d9ac6 | 2014-06-30 09:05:34 -0700 | [diff] [blame] | 189 | const SkImageInfo canvasInfo = canvas->imageInfo(); |
reed@google.com | 7111d46 | 2014-03-25 16:20:24 +0000 | [diff] [blame] | 190 | size_t canvasRowBytes; |
| 191 | const uint32_t* canvasPixels; |
reed@google.com | 1121170 | 2014-03-25 12:00:30 +0000 | [diff] [blame] | 192 | |
reed@google.com | 7111d46 | 2014-03-25 16:20:24 +0000 | [diff] [blame] | 193 | // Can't use canvas->peekPixels(), as we are trying to look at GPU pixels sometimes as well. |
| 194 | // At some point this will be unsupported, as we won't allow accessBitmap() to magically call |
| 195 | // readPixels for the client. |
| 196 | SkBitmap secretDevBitmap; |
halcanary | f622a6c | 2014-10-24 12:54:53 -0700 | [diff] [blame] | 197 | canvas->readPixels(canvasInfo.bounds(), &secretDevBitmap); |
reed | 52d9ac6 | 2014-06-30 09:05:34 -0700 | [diff] [blame] | 198 | |
reed@google.com | 7111d46 | 2014-03-25 16:20:24 +0000 | [diff] [blame] | 199 | SkAutoLockPixels alp(secretDevBitmap); |
reed@google.com | 7111d46 | 2014-03-25 16:20:24 +0000 | [diff] [blame] | 200 | canvasRowBytes = secretDevBitmap.rowBytes(); |
| 201 | canvasPixels = static_cast<const uint32_t*>(secretDevBitmap.getPixels()); |
| 202 | |
| 203 | if (NULL == canvasPixels) { |
| 204 | return false; |
| 205 | } |
| 206 | |
| 207 | if (canvasInfo.width() != DEV_W || |
| 208 | canvasInfo.height() != DEV_H || |
commit-bot@chromium.org | 28fcae2 | 2014-04-11 17:15:40 +0000 | [diff] [blame] | 209 | canvasInfo.colorType() != kN32_SkColorType) { |
reed@google.com | 7111d46 | 2014-03-25 16:20:24 +0000 | [diff] [blame] | 210 | return false; |
| 211 | } |
| 212 | |
| 213 | const SkImageInfo bmInfo = bitmap.info(); |
| 214 | |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 215 | SkIRect writeRect = SkIRect::MakeXYWH(writeX, writeY, bitmap.width(), bitmap.height()); |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 216 | for (int cy = 0; cy < DEV_H; ++cy) { |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 217 | for (int cx = 0; cx < DEV_W; ++cx) { |
reed@google.com | 7111d46 | 2014-03-25 16:20:24 +0000 | [diff] [blame] | 218 | SkPMColor canvasPixel = canvasPixels[cx]; |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 219 | if (writeRect.contains(cx, cy)) { |
| 220 | int bx = cx - writeX; |
| 221 | int by = cy - writeY; |
reed@google.com | 7111d46 | 2014-03-25 16:20:24 +0000 | [diff] [blame] | 222 | uint32_t bmpColor8888 = getBitmapColor(bx, by, bitmap.width(), |
| 223 | bmInfo.colorType(), bmInfo.alphaType()); |
| 224 | bool mul = (kUnpremul_SkAlphaType == bmInfo.alphaType()); |
| 225 | SkPMColor bmpPMColor = convert_to_PMColor(bmInfo.colorType(), bmInfo.alphaType(), |
| 226 | bmpColor8888); |
| 227 | bool check = checkPixel(bmpPMColor, canvasPixel, mul); |
| 228 | REPORTER_ASSERT(reporter, check); |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 229 | if (!check) { |
bsalomon@google.com | 72f3dca | 2012-08-17 13:32:06 +0000 | [diff] [blame] | 230 | return false; |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 231 | } |
| 232 | } else { |
| 233 | bool check; |
| 234 | SkPMColor testColor = getCanvasColor(cx, cy); |
| 235 | REPORTER_ASSERT(reporter, check = (canvasPixel == testColor)); |
| 236 | if (!check) { |
bsalomon@google.com | 72f3dca | 2012-08-17 13:32:06 +0000 | [diff] [blame] | 237 | return false; |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 238 | } |
| 239 | } |
| 240 | } |
| 241 | if (cy != DEV_H -1) { |
reed@google.com | 7111d46 | 2014-03-25 16:20:24 +0000 | [diff] [blame] | 242 | const char* pad = reinterpret_cast<const char*>(canvasPixels + DEV_W); |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 243 | for (size_t px = 0; px < canvasRowBytes - 4 * DEV_W; ++px) { |
| 244 | bool check; |
| 245 | REPORTER_ASSERT(reporter, check = (pad[px] == static_cast<char>(DEV_PAD))); |
| 246 | if (!check) { |
bsalomon@google.com | 72f3dca | 2012-08-17 13:32:06 +0000 | [diff] [blame] | 247 | return false; |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 248 | } |
| 249 | } |
| 250 | } |
reed@google.com | 7111d46 | 2014-03-25 16:20:24 +0000 | [diff] [blame] | 251 | canvasPixels += canvasRowBytes/4; |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 252 | } |
| 253 | |
bsalomon@google.com | 72f3dca | 2012-08-17 13:32:06 +0000 | [diff] [blame] | 254 | return true; |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 255 | } |
| 256 | |
| 257 | enum DevType { |
| 258 | kRaster_DevType, |
bsalomon@google.com | cf8fb1f | 2012-08-02 14:03:32 +0000 | [diff] [blame] | 259 | #if SK_SUPPORT_GPU |
senorblanco@chromium.org | 3cb406b | 2013-02-05 19:50:46 +0000 | [diff] [blame] | 260 | kGpu_BottomLeft_DevType, |
| 261 | kGpu_TopLeft_DevType, |
bsalomon@google.com | cf8fb1f | 2012-08-02 14:03:32 +0000 | [diff] [blame] | 262 | #endif |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 263 | }; |
| 264 | |
| 265 | struct CanvasConfig { |
| 266 | DevType fDevType; |
| 267 | bool fTightRowBytes; |
| 268 | }; |
| 269 | |
| 270 | static const CanvasConfig gCanvasConfigs[] = { |
| 271 | {kRaster_DevType, true}, |
| 272 | {kRaster_DevType, false}, |
reed@google.com | 8f4d230 | 2013-12-17 16:44:46 +0000 | [diff] [blame] | 273 | #if SK_SUPPORT_GPU |
senorblanco@chromium.org | 3cb406b | 2013-02-05 19:50:46 +0000 | [diff] [blame] | 274 | {kGpu_BottomLeft_DevType, true}, // row bytes has no meaning on gpu devices |
| 275 | {kGpu_TopLeft_DevType, true}, // row bytes has no meaning on gpu devices |
bsalomon@google.com | bbce8b2 | 2011-11-10 21:20:37 +0000 | [diff] [blame] | 276 | #endif |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 277 | }; |
| 278 | |
commit-bot@chromium.org | fa9e5fa | 2014-02-13 22:00:04 +0000 | [diff] [blame] | 279 | #include "SkMallocPixelRef.h" |
| 280 | |
| 281 | // This is a tricky pattern, because we have to setConfig+rowBytes AND specify |
| 282 | // a custom pixelRef (which also has to specify its rowBytes), so we have to be |
| 283 | // sure that the two rowBytes match (and the infos match). |
| 284 | // |
| 285 | static bool allocRowBytes(SkBitmap* bm, const SkImageInfo& info, size_t rowBytes) { |
commit-bot@chromium.org | a3264e5 | 2014-05-30 13:26:10 +0000 | [diff] [blame] | 286 | if (!bm->setInfo(info, rowBytes)) { |
commit-bot@chromium.org | fa9e5fa | 2014-02-13 22:00:04 +0000 | [diff] [blame] | 287 | return false; |
| 288 | } |
| 289 | SkPixelRef* pr = SkMallocPixelRef::NewAllocate(info, rowBytes, NULL); |
| 290 | bm->setPixelRef(pr)->unref(); |
| 291 | return true; |
| 292 | } |
| 293 | |
reed | 52d9ac6 | 2014-06-30 09:05:34 -0700 | [diff] [blame] | 294 | static void free_pixels(void* pixels, void* ctx) { |
| 295 | sk_free(pixels); |
| 296 | } |
| 297 | |
| 298 | static SkSurface* create_surface(const CanvasConfig& c, GrContext* grCtx) { |
| 299 | SkImageInfo info = SkImageInfo::MakeN32Premul(DEV_W, DEV_H); |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 300 | switch (c.fDevType) { |
| 301 | case kRaster_DevType: { |
reed | 52d9ac6 | 2014-06-30 09:05:34 -0700 | [diff] [blame] | 302 | const size_t rowBytes = c.fTightRowBytes ? info.minRowBytes() : 4 * DEV_W + 100; |
| 303 | const size_t size = info.getSafeSize(rowBytes); |
| 304 | void* pixels = sk_malloc_throw(size); |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 305 | // if rowBytes isn't tight then set the padding to a known value |
reed | 52d9ac6 | 2014-06-30 09:05:34 -0700 | [diff] [blame] | 306 | if (!c.fTightRowBytes) { |
| 307 | memset(pixels, DEV_PAD, size); |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 308 | } |
reed | 52d9ac6 | 2014-06-30 09:05:34 -0700 | [diff] [blame] | 309 | return SkSurface::NewRasterDirectReleaseProc(info, pixels, rowBytes, free_pixels, NULL); |
bsalomon@google.com | cf8fb1f | 2012-08-02 14:03:32 +0000 | [diff] [blame] | 310 | } |
| 311 | #if SK_SUPPORT_GPU |
senorblanco@chromium.org | 3cb406b | 2013-02-05 19:50:46 +0000 | [diff] [blame] | 312 | case kGpu_BottomLeft_DevType: |
| 313 | case kGpu_TopLeft_DevType: |
bsalomon | f2703d8 | 2014-10-28 14:33:06 -0700 | [diff] [blame] | 314 | GrSurfaceDesc desc; |
| 315 | desc.fFlags = kRenderTarget_GrSurfaceFlag; |
senorblanco@chromium.org | 3cb406b | 2013-02-05 19:50:46 +0000 | [diff] [blame] | 316 | desc.fWidth = DEV_W; |
| 317 | desc.fHeight = DEV_H; |
bsalomon@google.com | fec0bc3 | 2013-02-07 14:43:04 +0000 | [diff] [blame] | 318 | desc.fConfig = kSkia8888_GrPixelConfig; |
senorblanco@chromium.org | 3cb406b | 2013-02-05 19:50:46 +0000 | [diff] [blame] | 319 | desc.fOrigin = kGpu_TopLeft_DevType == c.fDevType ? |
| 320 | kTopLeft_GrSurfaceOrigin : kBottomLeft_GrSurfaceOrigin; |
bsalomon | d309e7a | 2015-04-30 14:18:54 -0700 | [diff] [blame] | 321 | SkAutoTUnref<GrTexture> texture(grCtx->textureProvider()->createTexture(desc, false)); |
bsalomon | e305973 | 2014-10-14 11:47:22 -0700 | [diff] [blame] | 322 | return SkSurface::NewRenderTargetDirect(texture->asRenderTarget()); |
bsalomon@google.com | cf8fb1f | 2012-08-02 14:03:32 +0000 | [diff] [blame] | 323 | #endif |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 324 | } |
reed@google.com | 44a42ea | 2012-10-01 17:54:05 +0000 | [diff] [blame] | 325 | return NULL; |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 326 | } |
| 327 | |
reed | 52d9ac6 | 2014-06-30 09:05:34 -0700 | [diff] [blame] | 328 | static bool setup_bitmap(SkBitmap* bm, SkColorType ct, SkAlphaType at, int w, int h, int tightRB) { |
reed@google.com | 7111d46 | 2014-03-25 16:20:24 +0000 | [diff] [blame] | 329 | size_t rowBytes = tightRB ? 0 : 4 * w + 60; |
| 330 | SkImageInfo info = SkImageInfo::Make(w, h, ct, at); |
| 331 | if (!allocRowBytes(bm, info, rowBytes)) { |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 332 | return false; |
| 333 | } |
reed@google.com | 7111d46 | 2014-03-25 16:20:24 +0000 | [diff] [blame] | 334 | SkAutoLockPixels alp(*bm); |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 335 | for (int y = 0; y < h; ++y) { |
| 336 | for (int x = 0; x < w; ++x) { |
reed@google.com | 7111d46 | 2014-03-25 16:20:24 +0000 | [diff] [blame] | 337 | *bm->getAddr32(x, y) = getBitmapColor(x, y, w, ct, at); |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 338 | } |
| 339 | } |
| 340 | return true; |
| 341 | } |
| 342 | |
reed | 4af35f3 | 2014-06-27 17:47:49 -0700 | [diff] [blame] | 343 | static void call_writepixels(SkCanvas* canvas) { |
| 344 | const SkImageInfo info = SkImageInfo::MakeN32Premul(1, 1); |
| 345 | SkPMColor pixel = 0; |
| 346 | canvas->writePixels(info, &pixel, sizeof(SkPMColor), 0, 0); |
| 347 | } |
| 348 | |
| 349 | static void test_surface_genid(skiatest::Reporter* reporter) { |
| 350 | const SkImageInfo info = SkImageInfo::MakeN32Premul(100, 100); |
| 351 | SkAutoTUnref<SkSurface> surface(SkSurface::NewRaster(info)); |
| 352 | uint32_t genID1 = surface->generationID(); |
| 353 | call_writepixels(surface->getCanvas()); |
| 354 | uint32_t genID2 = surface->generationID(); |
| 355 | REPORTER_ASSERT(reporter, genID1 != genID2); |
| 356 | } |
| 357 | |
tfarina@chromium.org | 4ee16bf | 2014-01-10 22:08:27 +0000 | [diff] [blame] | 358 | DEF_GPUTEST(WritePixels, reporter, factory) { |
reed | 4af35f3 | 2014-06-27 17:47:49 -0700 | [diff] [blame] | 359 | test_surface_genid(reporter); |
| 360 | |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 361 | SkCanvas canvas; |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 362 | |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 363 | const SkIRect testRects[] = { |
| 364 | // entire thing |
| 365 | DEV_RECT, |
| 366 | // larger on all sides |
| 367 | SkIRect::MakeLTRB(-10, -10, DEV_W + 10, DEV_H + 10), |
| 368 | // fully contained |
| 369 | SkIRect::MakeLTRB(DEV_W / 4, DEV_H / 4, 3 * DEV_W / 4, 3 * DEV_H / 4), |
| 370 | // outside top left |
| 371 | SkIRect::MakeLTRB(-10, -10, -1, -1), |
| 372 | // touching top left corner |
| 373 | SkIRect::MakeLTRB(-10, -10, 0, 0), |
| 374 | // overlapping top left corner |
| 375 | SkIRect::MakeLTRB(-10, -10, DEV_W / 4, DEV_H / 4), |
| 376 | // overlapping top left and top right corners |
| 377 | SkIRect::MakeLTRB(-10, -10, DEV_W + 10, DEV_H / 4), |
| 378 | // touching entire top edge |
| 379 | SkIRect::MakeLTRB(-10, -10, DEV_W + 10, 0), |
| 380 | // overlapping top right corner |
| 381 | SkIRect::MakeLTRB(3 * DEV_W / 4, -10, DEV_W + 10, DEV_H / 4), |
| 382 | // contained in x, overlapping top edge |
| 383 | SkIRect::MakeLTRB(DEV_W / 4, -10, 3 * DEV_W / 4, DEV_H / 4), |
| 384 | // outside top right corner |
| 385 | SkIRect::MakeLTRB(DEV_W + 1, -10, DEV_W + 10, -1), |
| 386 | // touching top right corner |
| 387 | SkIRect::MakeLTRB(DEV_W, -10, DEV_W + 10, 0), |
| 388 | // overlapping top left and bottom left corners |
| 389 | SkIRect::MakeLTRB(-10, -10, DEV_W / 4, DEV_H + 10), |
| 390 | // touching entire left edge |
| 391 | SkIRect::MakeLTRB(-10, -10, 0, DEV_H + 10), |
| 392 | // overlapping bottom left corner |
| 393 | SkIRect::MakeLTRB(-10, 3 * DEV_H / 4, DEV_W / 4, DEV_H + 10), |
| 394 | // contained in y, overlapping left edge |
| 395 | SkIRect::MakeLTRB(-10, DEV_H / 4, DEV_W / 4, 3 * DEV_H / 4), |
| 396 | // outside bottom left corner |
| 397 | SkIRect::MakeLTRB(-10, DEV_H + 1, -1, DEV_H + 10), |
| 398 | // touching bottom left corner |
| 399 | SkIRect::MakeLTRB(-10, DEV_H, 0, DEV_H + 10), |
| 400 | // overlapping bottom left and bottom right corners |
| 401 | SkIRect::MakeLTRB(-10, 3 * DEV_H / 4, DEV_W + 10, DEV_H + 10), |
| 402 | // touching entire left edge |
| 403 | SkIRect::MakeLTRB(0, DEV_H, DEV_W, DEV_H + 10), |
| 404 | // overlapping bottom right corner |
| 405 | SkIRect::MakeLTRB(3 * DEV_W / 4, 3 * DEV_H / 4, DEV_W + 10, DEV_H + 10), |
| 406 | // overlapping top right and bottom right corners |
| 407 | SkIRect::MakeLTRB(3 * DEV_W / 4, -10, DEV_W + 10, DEV_H + 10), |
| 408 | }; |
| 409 | |
| 410 | for (size_t i = 0; i < SK_ARRAY_COUNT(gCanvasConfigs); ++i) { |
bsalomon@google.com | 67b915d | 2013-02-04 16:13:32 +0000 | [diff] [blame] | 411 | int glCtxTypeCnt = 1; |
| 412 | #if SK_SUPPORT_GPU |
senorblanco@chromium.org | 3cb406b | 2013-02-05 19:50:46 +0000 | [diff] [blame] | 413 | bool isGPUDevice = kGpu_TopLeft_DevType == gCanvasConfigs[i].fDevType || |
| 414 | kGpu_BottomLeft_DevType == gCanvasConfigs[i].fDevType; |
| 415 | if (isGPUDevice) { |
bsalomon@google.com | 67b915d | 2013-02-04 16:13:32 +0000 | [diff] [blame] | 416 | glCtxTypeCnt = GrContextFactory::kGLContextTypeCnt; |
| 417 | } |
| 418 | #endif |
| 419 | for (int glCtxType = 0; glCtxType < glCtxTypeCnt; ++glCtxType) { |
| 420 | GrContext* context = NULL; |
| 421 | #if SK_SUPPORT_GPU |
senorblanco@chromium.org | 3cb406b | 2013-02-05 19:50:46 +0000 | [diff] [blame] | 422 | if (isGPUDevice) { |
bsalomon@google.com | 67b915d | 2013-02-04 16:13:32 +0000 | [diff] [blame] | 423 | GrContextFactory::GLContextType type = |
| 424 | static_cast<GrContextFactory::GLContextType>(glCtxType); |
bsalomon@google.com | 67b915d | 2013-02-04 16:13:32 +0000 | [diff] [blame] | 425 | if (!GrContextFactory::IsRenderingGLContext(type)) { |
| 426 | continue; |
| 427 | } |
| 428 | context = factory->get(type); |
| 429 | if (NULL == context) { |
| 430 | continue; |
| 431 | } |
| 432 | } |
| 433 | #endif |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 434 | |
reed | 52d9ac6 | 2014-06-30 09:05:34 -0700 | [diff] [blame] | 435 | SkAutoTUnref<SkSurface> surface(create_surface(gCanvasConfigs[i], context)); |
| 436 | SkCanvas& canvas = *surface->getCanvas(); |
bsalomon@google.com | 405d0f4 | 2012-08-29 21:26:13 +0000 | [diff] [blame] | 437 | |
reed@google.com | 7111d46 | 2014-03-25 16:20:24 +0000 | [diff] [blame] | 438 | static const struct { |
| 439 | SkColorType fColorType; |
| 440 | SkAlphaType fAlphaType; |
| 441 | } gSrcConfigs[] = { |
| 442 | { kRGBA_8888_SkColorType, kPremul_SkAlphaType }, |
| 443 | { kRGBA_8888_SkColorType, kUnpremul_SkAlphaType }, |
| 444 | { kBGRA_8888_SkColorType, kPremul_SkAlphaType }, |
| 445 | { kBGRA_8888_SkColorType, kUnpremul_SkAlphaType }, |
bsalomon@google.com | 67b915d | 2013-02-04 16:13:32 +0000 | [diff] [blame] | 446 | }; |
| 447 | for (size_t r = 0; r < SK_ARRAY_COUNT(testRects); ++r) { |
| 448 | const SkIRect& rect = testRects[r]; |
| 449 | for (int tightBmp = 0; tightBmp < 2; ++tightBmp) { |
| 450 | for (size_t c = 0; c < SK_ARRAY_COUNT(gSrcConfigs); ++c) { |
reed@google.com | 7111d46 | 2014-03-25 16:20:24 +0000 | [diff] [blame] | 451 | const SkColorType ct = gSrcConfigs[c].fColorType; |
| 452 | const SkAlphaType at = gSrcConfigs[c].fAlphaType; |
| 453 | |
bsalomon@google.com | 67b915d | 2013-02-04 16:13:32 +0000 | [diff] [blame] | 454 | fillCanvas(&canvas); |
bsalomon@google.com | 67b915d | 2013-02-04 16:13:32 +0000 | [diff] [blame] | 455 | SkBitmap bmp; |
reed | 52d9ac6 | 2014-06-30 09:05:34 -0700 | [diff] [blame] | 456 | REPORTER_ASSERT(reporter, setup_bitmap(&bmp, ct, at, rect.width(), |
| 457 | rect.height(), SkToBool(tightBmp))); |
| 458 | uint32_t idBefore = surface->generationID(); |
commit-bot@chromium.org | 4cd9e21 | 2014-03-07 03:25:16 +0000 | [diff] [blame] | 459 | |
reed@google.com | 7111d46 | 2014-03-25 16:20:24 +0000 | [diff] [blame] | 460 | // sk_tool_utils::write_pixels(&canvas, bmp, rect.fLeft, rect.fTop, ct, at); |
| 461 | canvas.writePixels(bmp, rect.fLeft, rect.fTop); |
commit-bot@chromium.org | 4cd9e21 | 2014-03-07 03:25:16 +0000 | [diff] [blame] | 462 | |
reed | 52d9ac6 | 2014-06-30 09:05:34 -0700 | [diff] [blame] | 463 | uint32_t idAfter = surface->generationID(); |
| 464 | REPORTER_ASSERT(reporter, check_write(reporter, &canvas, bmp, |
| 465 | rect.fLeft, rect.fTop)); |
bsalomon@google.com | 67b915d | 2013-02-04 16:13:32 +0000 | [diff] [blame] | 466 | |
| 467 | // we should change the genID iff pixels were actually written. |
| 468 | SkIRect canvasRect = SkIRect::MakeSize(canvas.getDeviceSize()); |
| 469 | SkIRect writeRect = SkIRect::MakeXYWH(rect.fLeft, rect.fTop, |
| 470 | bmp.width(), bmp.height()); |
| 471 | bool intersects = SkIRect::Intersects(canvasRect, writeRect) ; |
| 472 | REPORTER_ASSERT(reporter, intersects == (idBefore != idAfter)); |
| 473 | } |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 474 | } |
| 475 | } |
| 476 | } |
| 477 | } |
| 478 | } |