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