2016-02-04 18:52:42 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2016 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file
|
|
|
|
*/
|
|
|
|
|
2016-03-17 13:58:39 +00:00
|
|
|
#include "SkAutoPixmapStorage.h"
|
2016-02-04 18:52:42 +00:00
|
|
|
#include "SkBitmap.h"
|
|
|
|
#include "SkCanvas.h"
|
|
|
|
#include "SkImage.h"
|
2016-03-17 13:58:39 +00:00
|
|
|
#include "SkPixmap.h"
|
2016-02-04 18:52:42 +00:00
|
|
|
#include "SkSpecialImage.h"
|
|
|
|
#include "SkSpecialSurface.h"
|
2016-03-21 20:44:18 +00:00
|
|
|
#include "SkSurface.h"
|
2016-02-04 18:52:42 +00:00
|
|
|
#include "Test.h"
|
|
|
|
|
|
|
|
#if SK_SUPPORT_GPU
|
|
|
|
#include "GrContext.h"
|
2018-01-08 18:40:32 +00:00
|
|
|
#include "GrContextPriv.h"
|
2018-01-16 13:06:32 +00:00
|
|
|
#include "GrProxyProvider.h"
|
2016-11-09 11:50:43 +00:00
|
|
|
#include "GrSurfaceProxy.h"
|
2017-03-09 03:21:00 +00:00
|
|
|
#include "GrTextureProxy.h"
|
2017-03-07 21:58:08 +00:00
|
|
|
#include "SkGr.h"
|
2016-02-04 18:52:42 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
// This test creates backing resources exactly sized to [kFullSize x kFullSize].
|
|
|
|
// It then wraps them in an SkSpecialImage with only the center (red) region being active.
|
|
|
|
// It then draws the SkSpecialImage to a full sized (all blue) canvas and checks that none
|
|
|
|
// of the inactive (green) region leaked out.
|
|
|
|
|
|
|
|
static const int kSmallerSize = 10;
|
|
|
|
static const int kPad = 3;
|
|
|
|
static const int kFullSize = kSmallerSize + 2 * kPad;
|
|
|
|
|
|
|
|
// Create a bitmap with red in the center and green around it
|
|
|
|
static SkBitmap create_bm() {
|
|
|
|
SkBitmap bm;
|
|
|
|
bm.allocN32Pixels(kFullSize, kFullSize, true);
|
|
|
|
|
|
|
|
SkCanvas temp(bm);
|
|
|
|
|
|
|
|
temp.clear(SK_ColorGREEN);
|
|
|
|
SkPaint p;
|
|
|
|
p.setColor(SK_ColorRED);
|
|
|
|
p.setAntiAlias(false);
|
|
|
|
|
|
|
|
temp.drawRect(SkRect::MakeXYWH(SkIntToScalar(kPad), SkIntToScalar(kPad),
|
2016-03-29 16:03:52 +00:00
|
|
|
SkIntToScalar(kSmallerSize), SkIntToScalar(kSmallerSize)),
|
2016-02-04 18:52:42 +00:00
|
|
|
p);
|
|
|
|
|
|
|
|
return bm;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Basic test of the SkSpecialImage public API (e.g., peekTexture, peekPixels & draw)
|
2016-03-17 21:31:39 +00:00
|
|
|
static void test_image(const sk_sp<SkSpecialImage>& img, skiatest::Reporter* reporter,
|
2017-01-31 16:31:39 +00:00
|
|
|
GrContext* context, bool isGPUBacked,
|
2016-03-17 13:58:39 +00:00
|
|
|
int offset, int size) {
|
2016-04-20 18:48:36 +00:00
|
|
|
const SkIRect subset = img->subset();
|
2016-03-17 13:58:39 +00:00
|
|
|
REPORTER_ASSERT(reporter, offset == subset.left());
|
|
|
|
REPORTER_ASSERT(reporter, offset == subset.top());
|
2016-02-04 18:52:42 +00:00
|
|
|
REPORTER_ASSERT(reporter, kSmallerSize == subset.width());
|
|
|
|
REPORTER_ASSERT(reporter, kSmallerSize == subset.height());
|
|
|
|
|
|
|
|
//--------------
|
2017-02-21 15:19:29 +00:00
|
|
|
// Test that isTextureBacked reports the correct backing type
|
2017-01-31 16:31:39 +00:00
|
|
|
REPORTER_ASSERT(reporter, isGPUBacked == img->isTextureBacked());
|
2016-04-08 19:10:42 +00:00
|
|
|
|
|
|
|
#if SK_SUPPORT_GPU
|
|
|
|
//--------------
|
2017-02-19 17:27:01 +00:00
|
|
|
// Test asTextureProxyRef - as long as there is a context this should succeed
|
2016-04-08 19:10:42 +00:00
|
|
|
if (context) {
|
2017-02-19 17:27:01 +00:00
|
|
|
sk_sp<GrTextureProxy> proxy(img->asTextureProxyRef(context));
|
|
|
|
REPORTER_ASSERT(reporter, proxy);
|
2016-04-08 19:10:42 +00:00
|
|
|
}
|
|
|
|
#endif
|
2016-02-04 18:52:42 +00:00
|
|
|
|
|
|
|
//--------------
|
2016-04-08 19:10:42 +00:00
|
|
|
// Test getROPixels - this should always succeed regardless of backing store
|
|
|
|
SkBitmap bitmap;
|
|
|
|
REPORTER_ASSERT(reporter, img->getROPixels(&bitmap));
|
2016-04-26 22:02:25 +00:00
|
|
|
if (context) {
|
|
|
|
REPORTER_ASSERT(reporter, kSmallerSize == bitmap.width());
|
|
|
|
REPORTER_ASSERT(reporter, kSmallerSize == bitmap.height());
|
|
|
|
} else {
|
|
|
|
REPORTER_ASSERT(reporter, size == bitmap.width());
|
|
|
|
REPORTER_ASSERT(reporter, size == bitmap.height());
|
|
|
|
}
|
2016-02-04 18:52:42 +00:00
|
|
|
|
|
|
|
//--------------
|
2016-03-21 20:44:18 +00:00
|
|
|
// Test that draw restricts itself to the subset
|
2016-09-23 20:04:05 +00:00
|
|
|
SkImageFilter::OutputProperties outProps(img->getColorSpace());
|
|
|
|
sk_sp<SkSpecialSurface> surf(img->makeSurface(outProps, SkISize::Make(kFullSize, kFullSize),
|
2017-01-17 15:48:53 +00:00
|
|
|
kPremul_SkAlphaType));
|
2016-02-04 18:52:42 +00:00
|
|
|
|
|
|
|
SkCanvas* canvas = surf->getCanvas();
|
|
|
|
|
|
|
|
canvas->clear(SK_ColorBLUE);
|
2016-02-16 20:09:36 +00:00
|
|
|
img->draw(canvas, SkIntToScalar(kPad), SkIntToScalar(kPad), nullptr);
|
2016-02-04 18:52:42 +00:00
|
|
|
|
|
|
|
SkBitmap bm;
|
2017-01-17 15:48:53 +00:00
|
|
|
bm.allocN32Pixels(kFullSize, kFullSize, false);
|
2016-02-04 18:52:42 +00:00
|
|
|
|
|
|
|
bool result = canvas->readPixels(bm.info(), bm.getPixels(), bm.rowBytes(), 0, 0);
|
|
|
|
SkASSERT_RELEASE(result);
|
|
|
|
|
|
|
|
// Only the center (red) portion should've been drawn into the canvas
|
|
|
|
REPORTER_ASSERT(reporter, SK_ColorBLUE == bm.getColor(kPad-1, kPad-1));
|
|
|
|
REPORTER_ASSERT(reporter, SK_ColorRED == bm.getColor(kPad, kPad));
|
|
|
|
REPORTER_ASSERT(reporter, SK_ColorRED == bm.getColor(kSmallerSize+kPad-1,
|
|
|
|
kSmallerSize+kPad-1));
|
|
|
|
REPORTER_ASSERT(reporter, SK_ColorBLUE == bm.getColor(kSmallerSize+kPad,
|
|
|
|
kSmallerSize+kPad));
|
2016-03-21 20:44:18 +00:00
|
|
|
|
|
|
|
//--------------
|
2017-02-18 21:58:09 +00:00
|
|
|
// Test that asImage & makeTightSurface return appropriately sized objects
|
2016-03-21 20:44:18 +00:00
|
|
|
// of the correct backing type
|
|
|
|
SkIRect newSubset = SkIRect::MakeWH(subset.width(), subset.height());
|
|
|
|
{
|
2017-02-18 21:58:09 +00:00
|
|
|
sk_sp<SkImage> tightImg(img->asImage(&newSubset));
|
2016-03-21 20:44:18 +00:00
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, tightImg->width() == subset.width());
|
|
|
|
REPORTER_ASSERT(reporter, tightImg->height() == subset.height());
|
2017-03-21 20:22:00 +00:00
|
|
|
REPORTER_ASSERT(reporter, isGPUBacked == tightImg->isTextureBacked());
|
2016-03-21 20:44:18 +00:00
|
|
|
SkPixmap tmpPixmap;
|
2017-01-31 16:31:39 +00:00
|
|
|
REPORTER_ASSERT(reporter, isGPUBacked != !!tightImg->peekPixels(&tmpPixmap));
|
2016-03-21 20:44:18 +00:00
|
|
|
}
|
|
|
|
{
|
2016-09-23 20:04:05 +00:00
|
|
|
SkImageFilter::OutputProperties outProps(img->getColorSpace());
|
|
|
|
sk_sp<SkSurface> tightSurf(img->makeTightSurface(outProps, subset.size()));
|
2016-03-21 20:44:18 +00:00
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, tightSurf->width() == subset.width());
|
|
|
|
REPORTER_ASSERT(reporter, tightSurf->height() == subset.height());
|
2017-01-31 16:31:39 +00:00
|
|
|
REPORTER_ASSERT(reporter, isGPUBacked ==
|
2016-03-21 20:44:18 +00:00
|
|
|
!!tightSurf->getTextureHandle(SkSurface::kDiscardWrite_BackendHandleAccess));
|
|
|
|
SkPixmap tmpPixmap;
|
2017-01-31 16:31:39 +00:00
|
|
|
REPORTER_ASSERT(reporter, isGPUBacked != !!tightSurf->peekPixels(&tmpPixmap));
|
2016-03-21 20:44:18 +00:00
|
|
|
}
|
2016-02-04 18:52:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DEF_TEST(SpecialImage_Raster, reporter) {
|
|
|
|
SkBitmap bm = create_bm();
|
|
|
|
|
2016-03-17 21:31:39 +00:00
|
|
|
sk_sp<SkSpecialImage> fullSImage(SkSpecialImage::MakeFromRaster(
|
2016-03-17 13:58:39 +00:00
|
|
|
SkIRect::MakeWH(kFullSize, kFullSize),
|
|
|
|
bm));
|
|
|
|
|
2016-02-04 18:52:42 +00:00
|
|
|
const SkIRect& subset = SkIRect::MakeXYWH(kPad, kPad, kSmallerSize, kSmallerSize);
|
|
|
|
|
2016-03-17 13:58:39 +00:00
|
|
|
{
|
2016-04-20 18:48:36 +00:00
|
|
|
sk_sp<SkSpecialImage> subSImg1(SkSpecialImage::MakeFromRaster(subset, bm));
|
2016-04-08 19:10:42 +00:00
|
|
|
test_image(subSImg1, reporter, nullptr, false, kPad, kFullSize);
|
2016-03-17 13:58:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2016-03-17 21:31:39 +00:00
|
|
|
sk_sp<SkSpecialImage> subSImg2(fullSImage->makeSubset(subset));
|
2016-04-08 19:10:42 +00:00
|
|
|
test_image(subSImg2, reporter, nullptr, false, 0, kSmallerSize);
|
2016-03-17 13:58:39 +00:00
|
|
|
}
|
2016-02-04 18:52:42 +00:00
|
|
|
}
|
|
|
|
|
2016-12-09 19:51:59 +00:00
|
|
|
static void test_specialimage_image(skiatest::Reporter* reporter, SkColorSpace* dstColorSpace) {
|
2016-02-04 18:52:42 +00:00
|
|
|
SkBitmap bm = create_bm();
|
|
|
|
|
2016-03-17 17:51:11 +00:00
|
|
|
sk_sp<SkImage> fullImage(SkImage::MakeFromBitmap(bm));
|
2016-02-04 18:52:42 +00:00
|
|
|
|
2016-03-17 21:31:39 +00:00
|
|
|
sk_sp<SkSpecialImage> fullSImage(SkSpecialImage::MakeFromImage(
|
2016-03-17 13:58:39 +00:00
|
|
|
SkIRect::MakeWH(kFullSize, kFullSize),
|
2016-12-09 19:51:59 +00:00
|
|
|
fullImage, dstColorSpace));
|
2016-03-17 13:58:39 +00:00
|
|
|
|
2016-02-04 18:52:42 +00:00
|
|
|
const SkIRect& subset = SkIRect::MakeXYWH(kPad, kPad, kSmallerSize, kSmallerSize);
|
|
|
|
|
2016-03-17 13:58:39 +00:00
|
|
|
{
|
2016-12-09 19:51:59 +00:00
|
|
|
sk_sp<SkSpecialImage> subSImg1(SkSpecialImage::MakeFromImage(subset, fullImage,
|
|
|
|
dstColorSpace));
|
2016-04-26 22:02:25 +00:00
|
|
|
test_image(subSImg1, reporter, nullptr, false, kPad, kFullSize);
|
2016-03-17 13:58:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2016-03-17 21:31:39 +00:00
|
|
|
sk_sp<SkSpecialImage> subSImg2(fullSImage->makeSubset(subset));
|
2016-04-26 22:02:25 +00:00
|
|
|
test_image(subSImg2, reporter, nullptr, false, 0, kSmallerSize);
|
2016-03-17 13:58:39 +00:00
|
|
|
}
|
2016-02-04 18:52:42 +00:00
|
|
|
}
|
|
|
|
|
2016-11-18 16:28:24 +00:00
|
|
|
DEF_TEST(SpecialImage_Image_Legacy, reporter) {
|
2016-12-09 19:51:59 +00:00
|
|
|
SkColorSpace* legacyColorSpace = nullptr;
|
|
|
|
test_specialimage_image(reporter, legacyColorSpace);
|
2016-11-18 16:28:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DEF_TEST(SpecialImage_Image_ColorSpaceAware, reporter) {
|
2017-02-07 18:56:11 +00:00
|
|
|
sk_sp<SkColorSpace> srgbColorSpace = SkColorSpace::MakeSRGB();
|
2016-12-09 19:51:59 +00:00
|
|
|
test_specialimage_image(reporter, srgbColorSpace.get());
|
2016-11-18 16:28:24 +00:00
|
|
|
}
|
|
|
|
|
2016-02-04 18:52:42 +00:00
|
|
|
#if SK_SUPPORT_GPU
|
2016-03-18 15:14:27 +00:00
|
|
|
|
|
|
|
static void test_texture_backed(skiatest::Reporter* reporter,
|
|
|
|
const sk_sp<SkSpecialImage>& orig,
|
|
|
|
const sk_sp<SkSpecialImage>& gpuBacked) {
|
|
|
|
REPORTER_ASSERT(reporter, gpuBacked);
|
2016-04-08 19:10:42 +00:00
|
|
|
REPORTER_ASSERT(reporter, gpuBacked->isTextureBacked());
|
2016-03-18 15:14:27 +00:00
|
|
|
REPORTER_ASSERT(reporter, gpuBacked->uniqueID() == orig->uniqueID());
|
|
|
|
REPORTER_ASSERT(reporter, gpuBacked->subset().width() == orig->subset().width() &&
|
|
|
|
gpuBacked->subset().height() == orig->subset().height());
|
2016-07-21 14:15:37 +00:00
|
|
|
REPORTER_ASSERT(reporter, gpuBacked->getColorSpace() == orig->getColorSpace());
|
2016-03-18 15:14:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Test out the SkSpecialImage::makeTextureImage entry point
|
2016-04-12 16:59:58 +00:00
|
|
|
DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SpecialImage_MakeTexture, reporter, ctxInfo) {
|
2016-05-11 13:33:06 +00:00
|
|
|
GrContext* context = ctxInfo.grContext();
|
2018-01-16 13:06:32 +00:00
|
|
|
GrProxyProvider* proxyProvider = context->contextPriv().proxyProvider();
|
2016-03-18 15:14:27 +00:00
|
|
|
SkBitmap bm = create_bm();
|
|
|
|
|
|
|
|
const SkIRect& subset = SkIRect::MakeXYWH(kPad, kPad, kSmallerSize, kSmallerSize);
|
|
|
|
|
|
|
|
{
|
|
|
|
// raster
|
|
|
|
sk_sp<SkSpecialImage> rasterImage(SkSpecialImage::MakeFromRaster(
|
|
|
|
SkIRect::MakeWH(kFullSize,
|
|
|
|
kFullSize),
|
|
|
|
bm));
|
|
|
|
|
|
|
|
{
|
2016-04-20 18:48:36 +00:00
|
|
|
sk_sp<SkSpecialImage> fromRaster(rasterImage->makeTextureImage(context));
|
2016-03-18 15:14:27 +00:00
|
|
|
test_texture_backed(reporter, rasterImage, fromRaster);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
sk_sp<SkSpecialImage> subRasterImage(rasterImage->makeSubset(subset));
|
|
|
|
|
2016-04-20 18:48:36 +00:00
|
|
|
sk_sp<SkSpecialImage> fromSubRaster(subRasterImage->makeTextureImage(context));
|
2016-03-18 15:14:27 +00:00
|
|
|
test_texture_backed(reporter, subRasterImage, fromSubRaster);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
// gpu
|
2017-02-21 15:19:29 +00:00
|
|
|
const GrSurfaceDesc desc = GrImageInfoToSurfaceDesc(bm.info(), *context->caps());
|
|
|
|
|
2018-01-16 13:06:32 +00:00
|
|
|
sk_sp<GrTextureProxy> proxy = proxyProvider->createTextureProxy(
|
2018-03-04 03:43:43 +00:00
|
|
|
desc, kTopLeft_GrSurfaceOrigin, SkBudgeted::kNo, bm.getPixels(), bm.rowBytes());
|
2017-03-02 23:18:38 +00:00
|
|
|
if (!proxy) {
|
2016-03-18 15:14:27 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-02-21 15:19:29 +00:00
|
|
|
sk_sp<SkSpecialImage> gpuImage(SkSpecialImage::MakeDeferredFromGpu(
|
2017-03-02 23:18:38 +00:00
|
|
|
context,
|
|
|
|
SkIRect::MakeWH(kFullSize, kFullSize),
|
|
|
|
kNeedNewImageUniqueID_SpecialImage,
|
|
|
|
std::move(proxy), nullptr));
|
2016-03-18 15:14:27 +00:00
|
|
|
|
|
|
|
{
|
2016-04-20 18:48:36 +00:00
|
|
|
sk_sp<SkSpecialImage> fromGPU(gpuImage->makeTextureImage(context));
|
2016-03-18 15:14:27 +00:00
|
|
|
test_texture_backed(reporter, gpuImage, fromGPU);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
sk_sp<SkSpecialImage> subGPUImage(gpuImage->makeSubset(subset));
|
|
|
|
|
2016-04-20 18:48:36 +00:00
|
|
|
sk_sp<SkSpecialImage> fromSubGPU(subGPUImage->makeTextureImage(context));
|
2016-03-18 15:14:27 +00:00
|
|
|
test_texture_backed(reporter, subGPUImage, fromSubGPU);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-12 16:59:58 +00:00
|
|
|
DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SpecialImage_Gpu, reporter, ctxInfo) {
|
2016-05-11 13:33:06 +00:00
|
|
|
GrContext* context = ctxInfo.grContext();
|
2018-01-16 13:06:32 +00:00
|
|
|
GrProxyProvider* proxyProvider = context->contextPriv().proxyProvider();
|
2016-02-04 18:52:42 +00:00
|
|
|
SkBitmap bm = create_bm();
|
|
|
|
|
2017-02-21 15:19:29 +00:00
|
|
|
const GrSurfaceDesc desc = GrImageInfoToSurfaceDesc(bm.info(), *context->caps());
|
2016-02-04 18:52:42 +00:00
|
|
|
|
2018-01-16 13:06:32 +00:00
|
|
|
sk_sp<GrTextureProxy> proxy = proxyProvider->createTextureProxy(
|
2018-03-04 03:43:43 +00:00
|
|
|
desc, kTopLeft_GrSurfaceOrigin, SkBudgeted::kNo, bm.getPixels(), bm.rowBytes());
|
2017-03-02 23:18:38 +00:00
|
|
|
if (!proxy) {
|
2016-02-04 18:52:42 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-02-21 15:19:29 +00:00
|
|
|
sk_sp<SkSpecialImage> fullSImg(SkSpecialImage::MakeDeferredFromGpu(
|
|
|
|
context,
|
2016-03-17 13:58:39 +00:00
|
|
|
SkIRect::MakeWH(kFullSize, kFullSize),
|
|
|
|
kNeedNewImageUniqueID_SpecialImage,
|
2017-03-02 23:18:38 +00:00
|
|
|
proxy, nullptr));
|
2016-03-17 13:58:39 +00:00
|
|
|
|
2016-02-04 18:52:42 +00:00
|
|
|
const SkIRect& subset = SkIRect::MakeXYWH(kPad, kPad, kSmallerSize, kSmallerSize);
|
|
|
|
|
2016-03-17 13:58:39 +00:00
|
|
|
{
|
2017-02-21 15:19:29 +00:00
|
|
|
sk_sp<SkSpecialImage> subSImg1(SkSpecialImage::MakeDeferredFromGpu(
|
2017-03-02 23:18:38 +00:00
|
|
|
context, subset,
|
2016-03-17 13:58:39 +00:00
|
|
|
kNeedNewImageUniqueID_SpecialImage,
|
2017-03-02 23:18:38 +00:00
|
|
|
std::move(proxy), nullptr));
|
2016-04-26 22:02:25 +00:00
|
|
|
test_image(subSImg1, reporter, context, true, kPad, kFullSize);
|
2016-03-17 13:58:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2016-03-17 21:31:39 +00:00
|
|
|
sk_sp<SkSpecialImage> subSImg2(fullSImg->makeSubset(subset));
|
2016-04-26 22:02:25 +00:00
|
|
|
test_image(subSImg2, reporter, context, true, kPad, kFullSize);
|
2016-03-17 13:58:39 +00:00
|
|
|
}
|
2016-02-04 18:52:42 +00:00
|
|
|
}
|
|
|
|
|
2016-11-01 21:28:40 +00:00
|
|
|
DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SpecialImage_DeferredGpu, reporter, ctxInfo) {
|
|
|
|
GrContext* context = ctxInfo.grContext();
|
2018-01-16 13:06:32 +00:00
|
|
|
GrProxyProvider* proxyProvider = context->contextPriv().proxyProvider();
|
2016-11-01 21:28:40 +00:00
|
|
|
SkBitmap bm = create_bm();
|
|
|
|
|
|
|
|
GrSurfaceDesc desc;
|
2017-07-21 14:17:45 +00:00
|
|
|
desc.fFlags = kNone_GrSurfaceFlags;
|
2016-11-01 21:28:40 +00:00
|
|
|
desc.fWidth = kFullSize;
|
|
|
|
desc.fHeight = kFullSize;
|
2017-07-27 20:16:25 +00:00
|
|
|
desc.fConfig = kSkia8888_GrPixelConfig;
|
2016-11-01 21:28:40 +00:00
|
|
|
|
2018-01-16 13:06:32 +00:00
|
|
|
sk_sp<GrTextureProxy> proxy = proxyProvider->createTextureProxy(
|
2018-03-04 03:43:43 +00:00
|
|
|
desc, kTopLeft_GrSurfaceOrigin, SkBudgeted::kNo, bm.getPixels(), bm.rowBytes());
|
2016-11-01 21:28:40 +00:00
|
|
|
if (!proxy) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
sk_sp<SkSpecialImage> fullSImg(SkSpecialImage::MakeDeferredFromGpu(
|
|
|
|
context,
|
|
|
|
SkIRect::MakeWH(kFullSize, kFullSize),
|
|
|
|
kNeedNewImageUniqueID_SpecialImage,
|
2017-03-02 23:18:38 +00:00
|
|
|
proxy, nullptr));
|
2016-11-01 21:28:40 +00:00
|
|
|
|
|
|
|
const SkIRect& subset = SkIRect::MakeXYWH(kPad, kPad, kSmallerSize, kSmallerSize);
|
|
|
|
|
|
|
|
{
|
|
|
|
sk_sp<SkSpecialImage> subSImg1(SkSpecialImage::MakeDeferredFromGpu(
|
2017-03-02 23:18:38 +00:00
|
|
|
context, subset,
|
2016-11-01 21:28:40 +00:00
|
|
|
kNeedNewImageUniqueID_SpecialImage,
|
2017-03-02 23:18:38 +00:00
|
|
|
std::move(proxy), nullptr));
|
2016-11-01 21:28:40 +00:00
|
|
|
test_image(subSImg1, reporter, context, true, kPad, kFullSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
sk_sp<SkSpecialImage> subSImg2(fullSImg->makeSubset(subset));
|
|
|
|
test_image(subSImg2, reporter, context, true, kPad, kFullSize);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-04 18:52:42 +00:00
|
|
|
#endif
|