2011-11-10 20:57:43 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2011 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
2013-08-29 12:53:23 +00:00
|
|
|
#include "SkBitmapDevice.h"
|
2011-11-10 20:57:43 +00:00
|
|
|
#include "SkCanvas.h"
|
2012-08-02 14:03:32 +00:00
|
|
|
#include "SkColorPriv.h"
|
2012-08-07 21:35:13 +00:00
|
|
|
#include "SkMathPriv.h"
|
2011-11-10 20:57:43 +00:00
|
|
|
#include "SkRegion.h"
|
2014-06-28 00:47:49 +00:00
|
|
|
#include "SkSurface.h"
|
2014-01-10 22:08:27 +00:00
|
|
|
#include "Test.h"
|
2014-03-07 03:25:16 +00:00
|
|
|
#include "sk_tool_utils.h"
|
2014-01-10 22:08:27 +00:00
|
|
|
|
2012-08-02 14:03:32 +00:00
|
|
|
#if SK_SUPPORT_GPU
|
2013-02-04 16:13:32 +00:00
|
|
|
#include "GrContextFactory.h"
|
2014-01-24 20:56:26 +00:00
|
|
|
#include "SkGpuDevice.h"
|
2012-08-02 14:03:32 +00:00
|
|
|
#else
|
|
|
|
class GrContext;
|
2013-02-04 16:13:32 +00:00
|
|
|
class GrContextFactory;
|
2012-08-02 14:03:32 +00:00
|
|
|
#endif
|
2011-11-10 20:57:43 +00:00
|
|
|
|
|
|
|
static const int DEV_W = 100, DEV_H = 100;
|
|
|
|
static const SkIRect DEV_RECT = SkIRect::MakeWH(DEV_W, DEV_H);
|
2012-08-23 18:14:13 +00:00
|
|
|
static const SkRect DEV_RECT_S = SkRect::MakeWH(DEV_W * SK_Scalar1,
|
2011-11-10 20:57:43 +00:00
|
|
|
DEV_H * SK_Scalar1);
|
|
|
|
static const U8CPU DEV_PAD = 0xee;
|
|
|
|
|
2013-10-12 17:25:17 +00:00
|
|
|
static SkPMColor getCanvasColor(int x, int y) {
|
2011-11-10 20:57:43 +00:00
|
|
|
SkASSERT(x >= 0 && x < DEV_W);
|
|
|
|
SkASSERT(y >= 0 && y < DEV_H);
|
|
|
|
|
|
|
|
U8CPU r = x;
|
|
|
|
U8CPU g = y;
|
|
|
|
U8CPU b = 0xc;
|
|
|
|
|
2011-11-23 15:01:08 +00:00
|
|
|
U8CPU a = 0x0;
|
2011-11-10 20:57:43 +00:00
|
|
|
switch ((x+y) % 5) {
|
|
|
|
case 0:
|
|
|
|
a = 0xff;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
a = 0x80;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
a = 0xCC;
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
a = 0x00;
|
|
|
|
break;
|
2011-11-23 15:01:08 +00:00
|
|
|
case 4:
|
|
|
|
a = 0x01;
|
|
|
|
break;
|
2011-11-10 20:57:43 +00:00
|
|
|
}
|
|
|
|
return SkPremultiplyARGBInline(a, r, g, b);
|
|
|
|
}
|
|
|
|
|
|
|
|
// assumes any premu/.unpremul has been applied
|
2014-03-25 16:20:24 +00:00
|
|
|
static uint32_t packColorType(SkColorType ct, U8CPU a, U8CPU r, U8CPU g, U8CPU b) {
|
2011-11-10 20:57:43 +00:00
|
|
|
uint32_t r32;
|
|
|
|
uint8_t* result = reinterpret_cast<uint8_t*>(&r32);
|
2014-03-25 16:20:24 +00:00
|
|
|
switch (ct) {
|
|
|
|
case kBGRA_8888_SkColorType:
|
2011-11-10 20:57:43 +00:00
|
|
|
result[0] = b;
|
|
|
|
result[1] = g;
|
|
|
|
result[2] = r;
|
|
|
|
result[3] = a;
|
|
|
|
break;
|
2014-03-25 16:20:24 +00:00
|
|
|
case kRGBA_8888_SkColorType:
|
2011-11-10 20:57:43 +00:00
|
|
|
result[0] = r;
|
|
|
|
result[1] = g;
|
|
|
|
result[2] = b;
|
|
|
|
result[3] = a;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
SkASSERT(0);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return r32;
|
|
|
|
}
|
|
|
|
|
2014-03-25 16:20:24 +00:00
|
|
|
static uint32_t getBitmapColor(int x, int y, int w, SkColorType ct, SkAlphaType at) {
|
2011-11-10 20:57:43 +00:00
|
|
|
int n = y * w + x;
|
|
|
|
U8CPU b = n & 0xff;
|
|
|
|
U8CPU g = (n >> 8) & 0xff;
|
|
|
|
U8CPU r = (n >> 16) & 0xff;
|
2011-11-23 15:01:08 +00:00
|
|
|
U8CPU a = 0;
|
2011-11-10 20:57:43 +00:00
|
|
|
switch ((x+y) % 5) {
|
|
|
|
case 4:
|
|
|
|
a = 0xff;
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
a = 0x80;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
a = 0xCC;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
a = 0x01;
|
|
|
|
break;
|
|
|
|
case 0:
|
|
|
|
a = 0x00;
|
|
|
|
break;
|
|
|
|
}
|
2014-03-25 16:20:24 +00:00
|
|
|
if (kPremul_SkAlphaType == at) {
|
2011-11-10 20:57:43 +00:00
|
|
|
r = SkMulDiv255Ceiling(r, a);
|
|
|
|
g = SkMulDiv255Ceiling(g, a);
|
|
|
|
b = SkMulDiv255Ceiling(b, a);
|
|
|
|
}
|
2014-03-25 16:20:24 +00:00
|
|
|
return packColorType(ct, a, r, g , b);
|
2011-11-10 20:57:43 +00:00
|
|
|
}
|
|
|
|
|
2013-10-12 17:25:17 +00:00
|
|
|
static void fillCanvas(SkCanvas* canvas) {
|
2014-03-07 03:25:16 +00:00
|
|
|
SkBitmap bmp;
|
2011-11-10 20:57:43 +00:00
|
|
|
if (bmp.isNull()) {
|
2014-09-02 19:50:45 +00:00
|
|
|
bmp.allocN32Pixels(DEV_W, DEV_H);
|
2011-11-10 20:57:43 +00:00
|
|
|
for (int y = 0; y < DEV_H; ++y) {
|
|
|
|
for (int x = 0; x < DEV_W; ++x) {
|
2014-03-07 03:25:16 +00:00
|
|
|
*bmp.getAddr32(x, y) = getCanvasColor(x, y);
|
2011-11-10 20:57:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
canvas->save();
|
|
|
|
canvas->setMatrix(SkMatrix::I());
|
|
|
|
canvas->clipRect(DEV_RECT_S, SkRegion::kReplace_Op);
|
|
|
|
SkPaint paint;
|
|
|
|
paint.setXfermodeMode(SkXfermode::kSrc_Mode);
|
|
|
|
canvas->drawBitmap(bmp, 0, 0, &paint);
|
|
|
|
canvas->restore();
|
|
|
|
}
|
|
|
|
|
2014-03-25 16:20:24 +00:00
|
|
|
/**
|
|
|
|
* Lucky for us, alpha is always in the same spot (SK_A32_SHIFT), for both RGBA and BGRA.
|
|
|
|
* Thus this routine doesn't need to know the exact colortype
|
|
|
|
*/
|
|
|
|
static uint32_t premul(uint32_t color) {
|
|
|
|
unsigned a = SkGetPackedA32(color);
|
|
|
|
// these next three are not necessarily r,g,b in that order, but they are r,g,b in some order.
|
|
|
|
unsigned c0 = SkGetPackedR32(color);
|
|
|
|
unsigned c1 = SkGetPackedG32(color);
|
|
|
|
unsigned c2 = SkGetPackedB32(color);
|
|
|
|
c0 = SkMulDiv255Ceiling(c0, a);
|
|
|
|
c1 = SkMulDiv255Ceiling(c1, a);
|
|
|
|
c2 = SkMulDiv255Ceiling(c2, a);
|
|
|
|
return SkPackARGB32NoCheck(a, c0, c1, c2);
|
|
|
|
}
|
|
|
|
|
|
|
|
static SkPMColor convert_to_PMColor(SkColorType ct, SkAlphaType at, uint32_t color) {
|
|
|
|
if (kUnpremul_SkAlphaType == at) {
|
|
|
|
color = premul(color);
|
|
|
|
}
|
|
|
|
switch (ct) {
|
|
|
|
case kRGBA_8888_SkColorType:
|
|
|
|
color = SkSwizzle_RGBA_to_PMColor(color);
|
2014-03-19 21:20:24 +00:00
|
|
|
break;
|
2014-03-25 16:20:24 +00:00
|
|
|
case kBGRA_8888_SkColorType:
|
|
|
|
color = SkSwizzle_BGRA_to_PMColor(color);
|
2014-03-25 12:00:30 +00:00
|
|
|
break;
|
2014-03-25 13:38:44 +00:00
|
|
|
default:
|
2014-03-25 16:20:24 +00:00
|
|
|
SkASSERT(0);
|
|
|
|
break;
|
2014-03-25 13:38:44 +00:00
|
|
|
}
|
2014-03-25 16:20:24 +00:00
|
|
|
return color;
|
2011-11-10 20:57:43 +00:00
|
|
|
}
|
|
|
|
|
2013-10-12 17:25:17 +00:00
|
|
|
static bool checkPixel(SkPMColor a, SkPMColor b, bool didPremulConversion) {
|
2011-11-10 20:57:43 +00:00
|
|
|
if (!didPremulConversion) {
|
|
|
|
return a == b;
|
|
|
|
}
|
|
|
|
int32_t aA = static_cast<int32_t>(SkGetPackedA32(a));
|
|
|
|
int32_t aR = static_cast<int32_t>(SkGetPackedR32(a));
|
|
|
|
int32_t aG = static_cast<int32_t>(SkGetPackedG32(a));
|
|
|
|
int32_t aB = SkGetPackedB32(a);
|
|
|
|
|
|
|
|
int32_t bA = static_cast<int32_t>(SkGetPackedA32(b));
|
|
|
|
int32_t bR = static_cast<int32_t>(SkGetPackedR32(b));
|
|
|
|
int32_t bG = static_cast<int32_t>(SkGetPackedG32(b));
|
|
|
|
int32_t bB = static_cast<int32_t>(SkGetPackedB32(b));
|
|
|
|
|
|
|
|
return aA == bA &&
|
|
|
|
SkAbs32(aR - bR) <= 1 &&
|
|
|
|
SkAbs32(aG - bG) <= 1 &&
|
|
|
|
SkAbs32(aB - bB) <= 1;
|
|
|
|
}
|
|
|
|
|
2014-06-30 16:05:34 +00:00
|
|
|
static bool check_write(skiatest::Reporter* reporter, SkCanvas* canvas, const SkBitmap& bitmap,
|
2014-03-25 16:20:24 +00:00
|
|
|
int writeX, int writeY) {
|
2014-06-30 16:05:34 +00:00
|
|
|
const SkImageInfo canvasInfo = canvas->imageInfo();
|
2014-03-25 16:20:24 +00:00
|
|
|
size_t canvasRowBytes;
|
|
|
|
const uint32_t* canvasPixels;
|
|
|
|
|
|
|
|
// Can't use canvas->peekPixels(), as we are trying to look at GPU pixels sometimes as well.
|
|
|
|
// At some point this will be unsupported, as we won't allow accessBitmap() to magically call
|
|
|
|
// readPixels for the client.
|
|
|
|
SkBitmap secretDevBitmap;
|
2014-10-24 19:54:53 +00:00
|
|
|
canvas->readPixels(canvasInfo.bounds(), &secretDevBitmap);
|
2014-06-30 16:05:34 +00:00
|
|
|
|
2014-03-25 16:20:24 +00:00
|
|
|
SkAutoLockPixels alp(secretDevBitmap);
|
|
|
|
canvasRowBytes = secretDevBitmap.rowBytes();
|
|
|
|
canvasPixels = static_cast<const uint32_t*>(secretDevBitmap.getPixels());
|
|
|
|
|
|
|
|
if (NULL == canvasPixels) {
|
2011-11-10 20:57:43 +00:00
|
|
|
return false;
|
|
|
|
}
|
2014-03-25 16:20:24 +00:00
|
|
|
|
|
|
|
if (canvasInfo.width() != DEV_W ||
|
|
|
|
canvasInfo.height() != DEV_H ||
|
2014-04-11 17:15:40 +00:00
|
|
|
canvasInfo.colorType() != kN32_SkColorType) {
|
2011-11-10 20:57:43 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-03-25 16:20:24 +00:00
|
|
|
const SkImageInfo bmInfo = bitmap.info();
|
|
|
|
|
2011-11-10 20:57:43 +00:00
|
|
|
SkIRect writeRect = SkIRect::MakeXYWH(writeX, writeY, bitmap.width(), bitmap.height());
|
|
|
|
for (int cy = 0; cy < DEV_H; ++cy) {
|
|
|
|
for (int cx = 0; cx < DEV_W; ++cx) {
|
2014-03-25 16:20:24 +00:00
|
|
|
SkPMColor canvasPixel = canvasPixels[cx];
|
2011-11-10 20:57:43 +00:00
|
|
|
if (writeRect.contains(cx, cy)) {
|
|
|
|
int bx = cx - writeX;
|
|
|
|
int by = cy - writeY;
|
2014-03-25 16:20:24 +00:00
|
|
|
uint32_t bmpColor8888 = getBitmapColor(bx, by, bitmap.width(),
|
|
|
|
bmInfo.colorType(), bmInfo.alphaType());
|
|
|
|
bool mul = (kUnpremul_SkAlphaType == bmInfo.alphaType());
|
|
|
|
SkPMColor bmpPMColor = convert_to_PMColor(bmInfo.colorType(), bmInfo.alphaType(),
|
|
|
|
bmpColor8888);
|
|
|
|
bool check = checkPixel(bmpPMColor, canvasPixel, mul);
|
|
|
|
REPORTER_ASSERT(reporter, check);
|
2011-11-10 20:57:43 +00:00
|
|
|
if (!check) {
|
2012-08-17 13:32:06 +00:00
|
|
|
return false;
|
2011-11-10 20:57:43 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
bool check;
|
|
|
|
SkPMColor testColor = getCanvasColor(cx, cy);
|
|
|
|
REPORTER_ASSERT(reporter, check = (canvasPixel == testColor));
|
|
|
|
if (!check) {
|
2012-08-17 13:32:06 +00:00
|
|
|
return false;
|
2011-11-10 20:57:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (cy != DEV_H -1) {
|
2014-03-25 16:20:24 +00:00
|
|
|
const char* pad = reinterpret_cast<const char*>(canvasPixels + DEV_W);
|
2011-11-10 20:57:43 +00:00
|
|
|
for (size_t px = 0; px < canvasRowBytes - 4 * DEV_W; ++px) {
|
|
|
|
bool check;
|
|
|
|
REPORTER_ASSERT(reporter, check = (pad[px] == static_cast<char>(DEV_PAD)));
|
|
|
|
if (!check) {
|
2012-08-17 13:32:06 +00:00
|
|
|
return false;
|
2011-11-10 20:57:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-03-25 16:20:24 +00:00
|
|
|
canvasPixels += canvasRowBytes/4;
|
2011-11-10 20:57:43 +00:00
|
|
|
}
|
|
|
|
|
2012-08-17 13:32:06 +00:00
|
|
|
return true;
|
2011-11-10 20:57:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
enum DevType {
|
|
|
|
kRaster_DevType,
|
2012-08-02 14:03:32 +00:00
|
|
|
#if SK_SUPPORT_GPU
|
2013-02-05 19:50:46 +00:00
|
|
|
kGpu_BottomLeft_DevType,
|
|
|
|
kGpu_TopLeft_DevType,
|
2012-08-02 14:03:32 +00:00
|
|
|
#endif
|
2011-11-10 20:57:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct CanvasConfig {
|
|
|
|
DevType fDevType;
|
|
|
|
bool fTightRowBytes;
|
|
|
|
};
|
|
|
|
|
|
|
|
static const CanvasConfig gCanvasConfigs[] = {
|
|
|
|
{kRaster_DevType, true},
|
|
|
|
{kRaster_DevType, false},
|
2013-12-17 16:44:46 +00:00
|
|
|
#if SK_SUPPORT_GPU
|
2013-02-05 19:50:46 +00:00
|
|
|
{kGpu_BottomLeft_DevType, true}, // row bytes has no meaning on gpu devices
|
|
|
|
{kGpu_TopLeft_DevType, true}, // row bytes has no meaning on gpu devices
|
2011-11-10 21:20:37 +00:00
|
|
|
#endif
|
2011-11-10 20:57:43 +00:00
|
|
|
};
|
|
|
|
|
2014-02-13 22:00:04 +00:00
|
|
|
#include "SkMallocPixelRef.h"
|
|
|
|
|
|
|
|
// This is a tricky pattern, because we have to setConfig+rowBytes AND specify
|
|
|
|
// a custom pixelRef (which also has to specify its rowBytes), so we have to be
|
|
|
|
// sure that the two rowBytes match (and the infos match).
|
|
|
|
//
|
|
|
|
static bool allocRowBytes(SkBitmap* bm, const SkImageInfo& info, size_t rowBytes) {
|
2014-05-30 13:26:10 +00:00
|
|
|
if (!bm->setInfo(info, rowBytes)) {
|
2014-02-13 22:00:04 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
SkPixelRef* pr = SkMallocPixelRef::NewAllocate(info, rowBytes, NULL);
|
|
|
|
bm->setPixelRef(pr)->unref();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-06-30 16:05:34 +00:00
|
|
|
static void free_pixels(void* pixels, void* ctx) {
|
|
|
|
sk_free(pixels);
|
|
|
|
}
|
|
|
|
|
|
|
|
static SkSurface* create_surface(const CanvasConfig& c, GrContext* grCtx) {
|
|
|
|
SkImageInfo info = SkImageInfo::MakeN32Premul(DEV_W, DEV_H);
|
2011-11-10 20:57:43 +00:00
|
|
|
switch (c.fDevType) {
|
|
|
|
case kRaster_DevType: {
|
2014-06-30 16:05:34 +00:00
|
|
|
const size_t rowBytes = c.fTightRowBytes ? info.minRowBytes() : 4 * DEV_W + 100;
|
|
|
|
const size_t size = info.getSafeSize(rowBytes);
|
|
|
|
void* pixels = sk_malloc_throw(size);
|
2011-11-10 20:57:43 +00:00
|
|
|
// if rowBytes isn't tight then set the padding to a known value
|
2014-06-30 16:05:34 +00:00
|
|
|
if (!c.fTightRowBytes) {
|
|
|
|
memset(pixels, DEV_PAD, size);
|
2011-11-10 20:57:43 +00:00
|
|
|
}
|
2014-06-30 16:05:34 +00:00
|
|
|
return SkSurface::NewRasterDirectReleaseProc(info, pixels, rowBytes, free_pixels, NULL);
|
2012-08-02 14:03:32 +00:00
|
|
|
}
|
|
|
|
#if SK_SUPPORT_GPU
|
2013-02-05 19:50:46 +00:00
|
|
|
case kGpu_BottomLeft_DevType:
|
|
|
|
case kGpu_TopLeft_DevType:
|
2014-10-28 21:33:06 +00:00
|
|
|
GrSurfaceDesc desc;
|
|
|
|
desc.fFlags = kRenderTarget_GrSurfaceFlag;
|
2013-02-05 19:50:46 +00:00
|
|
|
desc.fWidth = DEV_W;
|
|
|
|
desc.fHeight = DEV_H;
|
2013-02-07 14:43:04 +00:00
|
|
|
desc.fConfig = kSkia8888_GrPixelConfig;
|
2013-02-05 19:50:46 +00:00
|
|
|
desc.fOrigin = kGpu_TopLeft_DevType == c.fDevType ?
|
|
|
|
kTopLeft_GrSurfaceOrigin : kBottomLeft_GrSurfaceOrigin;
|
2015-02-06 16:49:24 +00:00
|
|
|
SkAutoTUnref<GrTexture> texture(grCtx->createTexture(desc, false));
|
2014-10-14 18:47:22 +00:00
|
|
|
return SkSurface::NewRenderTargetDirect(texture->asRenderTarget());
|
2012-08-02 14:03:32 +00:00
|
|
|
#endif
|
2011-11-10 20:57:43 +00:00
|
|
|
}
|
2012-10-01 17:54:05 +00:00
|
|
|
return NULL;
|
2011-11-10 20:57:43 +00:00
|
|
|
}
|
|
|
|
|
2014-06-30 16:05:34 +00:00
|
|
|
static bool setup_bitmap(SkBitmap* bm, SkColorType ct, SkAlphaType at, int w, int h, int tightRB) {
|
2014-03-25 16:20:24 +00:00
|
|
|
size_t rowBytes = tightRB ? 0 : 4 * w + 60;
|
|
|
|
SkImageInfo info = SkImageInfo::Make(w, h, ct, at);
|
|
|
|
if (!allocRowBytes(bm, info, rowBytes)) {
|
2011-11-10 20:57:43 +00:00
|
|
|
return false;
|
|
|
|
}
|
2014-03-25 16:20:24 +00:00
|
|
|
SkAutoLockPixels alp(*bm);
|
2011-11-10 20:57:43 +00:00
|
|
|
for (int y = 0; y < h; ++y) {
|
|
|
|
for (int x = 0; x < w; ++x) {
|
2014-03-25 16:20:24 +00:00
|
|
|
*bm->getAddr32(x, y) = getBitmapColor(x, y, w, ct, at);
|
2011-11-10 20:57:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-06-28 00:47:49 +00:00
|
|
|
static void call_writepixels(SkCanvas* canvas) {
|
|
|
|
const SkImageInfo info = SkImageInfo::MakeN32Premul(1, 1);
|
|
|
|
SkPMColor pixel = 0;
|
|
|
|
canvas->writePixels(info, &pixel, sizeof(SkPMColor), 0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void test_surface_genid(skiatest::Reporter* reporter) {
|
|
|
|
const SkImageInfo info = SkImageInfo::MakeN32Premul(100, 100);
|
|
|
|
SkAutoTUnref<SkSurface> surface(SkSurface::NewRaster(info));
|
|
|
|
uint32_t genID1 = surface->generationID();
|
|
|
|
call_writepixels(surface->getCanvas());
|
|
|
|
uint32_t genID2 = surface->generationID();
|
|
|
|
REPORTER_ASSERT(reporter, genID1 != genID2);
|
|
|
|
}
|
|
|
|
|
2014-01-10 22:08:27 +00:00
|
|
|
DEF_GPUTEST(WritePixels, reporter, factory) {
|
2014-06-28 00:47:49 +00:00
|
|
|
test_surface_genid(reporter);
|
|
|
|
|
2011-11-10 20:57:43 +00:00
|
|
|
SkCanvas canvas;
|
2012-08-23 18:14:13 +00:00
|
|
|
|
2011-11-10 20:57:43 +00:00
|
|
|
const SkIRect testRects[] = {
|
|
|
|
// entire thing
|
|
|
|
DEV_RECT,
|
|
|
|
// larger on all sides
|
|
|
|
SkIRect::MakeLTRB(-10, -10, DEV_W + 10, DEV_H + 10),
|
|
|
|
// fully contained
|
|
|
|
SkIRect::MakeLTRB(DEV_W / 4, DEV_H / 4, 3 * DEV_W / 4, 3 * DEV_H / 4),
|
|
|
|
// outside top left
|
|
|
|
SkIRect::MakeLTRB(-10, -10, -1, -1),
|
|
|
|
// touching top left corner
|
|
|
|
SkIRect::MakeLTRB(-10, -10, 0, 0),
|
|
|
|
// overlapping top left corner
|
|
|
|
SkIRect::MakeLTRB(-10, -10, DEV_W / 4, DEV_H / 4),
|
|
|
|
// overlapping top left and top right corners
|
|
|
|
SkIRect::MakeLTRB(-10, -10, DEV_W + 10, DEV_H / 4),
|
|
|
|
// touching entire top edge
|
|
|
|
SkIRect::MakeLTRB(-10, -10, DEV_W + 10, 0),
|
|
|
|
// overlapping top right corner
|
|
|
|
SkIRect::MakeLTRB(3 * DEV_W / 4, -10, DEV_W + 10, DEV_H / 4),
|
|
|
|
// contained in x, overlapping top edge
|
|
|
|
SkIRect::MakeLTRB(DEV_W / 4, -10, 3 * DEV_W / 4, DEV_H / 4),
|
|
|
|
// outside top right corner
|
|
|
|
SkIRect::MakeLTRB(DEV_W + 1, -10, DEV_W + 10, -1),
|
|
|
|
// touching top right corner
|
|
|
|
SkIRect::MakeLTRB(DEV_W, -10, DEV_W + 10, 0),
|
|
|
|
// overlapping top left and bottom left corners
|
|
|
|
SkIRect::MakeLTRB(-10, -10, DEV_W / 4, DEV_H + 10),
|
|
|
|
// touching entire left edge
|
|
|
|
SkIRect::MakeLTRB(-10, -10, 0, DEV_H + 10),
|
|
|
|
// overlapping bottom left corner
|
|
|
|
SkIRect::MakeLTRB(-10, 3 * DEV_H / 4, DEV_W / 4, DEV_H + 10),
|
|
|
|
// contained in y, overlapping left edge
|
|
|
|
SkIRect::MakeLTRB(-10, DEV_H / 4, DEV_W / 4, 3 * DEV_H / 4),
|
|
|
|
// outside bottom left corner
|
|
|
|
SkIRect::MakeLTRB(-10, DEV_H + 1, -1, DEV_H + 10),
|
|
|
|
// touching bottom left corner
|
|
|
|
SkIRect::MakeLTRB(-10, DEV_H, 0, DEV_H + 10),
|
|
|
|
// overlapping bottom left and bottom right corners
|
|
|
|
SkIRect::MakeLTRB(-10, 3 * DEV_H / 4, DEV_W + 10, DEV_H + 10),
|
|
|
|
// touching entire left edge
|
|
|
|
SkIRect::MakeLTRB(0, DEV_H, DEV_W, DEV_H + 10),
|
|
|
|
// overlapping bottom right corner
|
|
|
|
SkIRect::MakeLTRB(3 * DEV_W / 4, 3 * DEV_H / 4, DEV_W + 10, DEV_H + 10),
|
|
|
|
// overlapping top right and bottom right corners
|
|
|
|
SkIRect::MakeLTRB(3 * DEV_W / 4, -10, DEV_W + 10, DEV_H + 10),
|
|
|
|
};
|
|
|
|
|
|
|
|
for (size_t i = 0; i < SK_ARRAY_COUNT(gCanvasConfigs); ++i) {
|
2013-02-04 16:13:32 +00:00
|
|
|
int glCtxTypeCnt = 1;
|
|
|
|
#if SK_SUPPORT_GPU
|
2013-02-05 19:50:46 +00:00
|
|
|
bool isGPUDevice = kGpu_TopLeft_DevType == gCanvasConfigs[i].fDevType ||
|
|
|
|
kGpu_BottomLeft_DevType == gCanvasConfigs[i].fDevType;
|
|
|
|
if (isGPUDevice) {
|
2013-02-04 16:13:32 +00:00
|
|
|
glCtxTypeCnt = GrContextFactory::kGLContextTypeCnt;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
for (int glCtxType = 0; glCtxType < glCtxTypeCnt; ++glCtxType) {
|
|
|
|
GrContext* context = NULL;
|
|
|
|
#if SK_SUPPORT_GPU
|
2013-02-05 19:50:46 +00:00
|
|
|
if (isGPUDevice) {
|
2013-02-04 16:13:32 +00:00
|
|
|
GrContextFactory::GLContextType type =
|
|
|
|
static_cast<GrContextFactory::GLContextType>(glCtxType);
|
|
|
|
if (!GrContextFactory::IsRenderingGLContext(type)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
context = factory->get(type);
|
|
|
|
if (NULL == context) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-06-30 16:05:34 +00:00
|
|
|
SkAutoTUnref<SkSurface> surface(create_surface(gCanvasConfigs[i], context));
|
|
|
|
SkCanvas& canvas = *surface->getCanvas();
|
2011-11-10 20:57:43 +00:00
|
|
|
|
2014-03-25 16:20:24 +00:00
|
|
|
static const struct {
|
|
|
|
SkColorType fColorType;
|
|
|
|
SkAlphaType fAlphaType;
|
|
|
|
} gSrcConfigs[] = {
|
|
|
|
{ kRGBA_8888_SkColorType, kPremul_SkAlphaType },
|
|
|
|
{ kRGBA_8888_SkColorType, kUnpremul_SkAlphaType },
|
|
|
|
{ kBGRA_8888_SkColorType, kPremul_SkAlphaType },
|
|
|
|
{ kBGRA_8888_SkColorType, kUnpremul_SkAlphaType },
|
2013-02-04 16:13:32 +00:00
|
|
|
};
|
|
|
|
for (size_t r = 0; r < SK_ARRAY_COUNT(testRects); ++r) {
|
|
|
|
const SkIRect& rect = testRects[r];
|
|
|
|
for (int tightBmp = 0; tightBmp < 2; ++tightBmp) {
|
|
|
|
for (size_t c = 0; c < SK_ARRAY_COUNT(gSrcConfigs); ++c) {
|
2014-03-25 16:20:24 +00:00
|
|
|
const SkColorType ct = gSrcConfigs[c].fColorType;
|
|
|
|
const SkAlphaType at = gSrcConfigs[c].fAlphaType;
|
|
|
|
|
2013-02-04 16:13:32 +00:00
|
|
|
fillCanvas(&canvas);
|
|
|
|
SkBitmap bmp;
|
2014-06-30 16:05:34 +00:00
|
|
|
REPORTER_ASSERT(reporter, setup_bitmap(&bmp, ct, at, rect.width(),
|
|
|
|
rect.height(), SkToBool(tightBmp)));
|
|
|
|
uint32_t idBefore = surface->generationID();
|
2014-03-07 03:25:16 +00:00
|
|
|
|
2014-03-25 16:20:24 +00:00
|
|
|
// sk_tool_utils::write_pixels(&canvas, bmp, rect.fLeft, rect.fTop, ct, at);
|
|
|
|
canvas.writePixels(bmp, rect.fLeft, rect.fTop);
|
2014-03-07 03:25:16 +00:00
|
|
|
|
2014-06-30 16:05:34 +00:00
|
|
|
uint32_t idAfter = surface->generationID();
|
|
|
|
REPORTER_ASSERT(reporter, check_write(reporter, &canvas, bmp,
|
|
|
|
rect.fLeft, rect.fTop));
|
2012-08-29 21:26:13 +00:00
|
|
|
|
2013-02-04 16:13:32 +00:00
|
|
|
// we should change the genID iff pixels were actually written.
|
|
|
|
SkIRect canvasRect = SkIRect::MakeSize(canvas.getDeviceSize());
|
|
|
|
SkIRect writeRect = SkIRect::MakeXYWH(rect.fLeft, rect.fTop,
|
|
|
|
bmp.width(), bmp.height());
|
|
|
|
bool intersects = SkIRect::Intersects(canvasRect, writeRect) ;
|
|
|
|
REPORTER_ASSERT(reporter, intersects == (idBefore != idAfter));
|
|
|
|
}
|
2011-11-10 20:57:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|