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
|
|
|
|
*/
|
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/core/SkBitmap.h"
|
|
|
|
#include "include/core/SkCanvas.h"
|
2020-07-06 14:56:46 +00:00
|
|
|
#include "include/gpu/GrDirectContext.h"
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "src/core/SkSpecialImage.h"
|
|
|
|
#include "src/core/SkSpecialSurface.h"
|
|
|
|
#include "src/gpu/GrCaps.h"
|
2020-10-14 15:23:11 +00:00
|
|
|
#include "src/gpu/GrDirectContextPriv.h"
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "src/gpu/SkGr.h"
|
2020-07-06 14:56:46 +00:00
|
|
|
#include "tests/Test.h"
|
2016-02-04 18:52:42 +00:00
|
|
|
|
|
|
|
class TestingSpecialSurfaceAccess {
|
|
|
|
public:
|
|
|
|
static const SkIRect& Subset(const SkSpecialSurface* surf) {
|
|
|
|
return surf->subset();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Both 'kSmallerSize' and 'kFullSize' need to be a non-power-of-2 to exercise
|
|
|
|
// the gpu's loose fit behavior
|
|
|
|
static const int kSmallerSize = 10;
|
|
|
|
static const int kPad = 5;
|
|
|
|
static const int kFullSize = kSmallerSize + 2 * kPad;
|
|
|
|
|
|
|
|
// Exercise the public API of SkSpecialSurface (e.g., getCanvas, newImageSnapshot)
|
2016-03-17 21:31:39 +00:00
|
|
|
static void test_surface(const sk_sp<SkSpecialSurface>& surf,
|
|
|
|
skiatest::Reporter* reporter,
|
|
|
|
int offset) {
|
2016-02-04 18:52:42 +00:00
|
|
|
|
2016-03-17 21:31:39 +00:00
|
|
|
const SkIRect surfSubset = TestingSpecialSurfaceAccess::Subset(surf.get());
|
2016-02-04 18:52:42 +00:00
|
|
|
REPORTER_ASSERT(reporter, offset == surfSubset.fLeft);
|
|
|
|
REPORTER_ASSERT(reporter, offset == surfSubset.fTop);
|
|
|
|
REPORTER_ASSERT(reporter, kSmallerSize == surfSubset.width());
|
|
|
|
REPORTER_ASSERT(reporter, kSmallerSize == surfSubset.height());
|
|
|
|
|
|
|
|
SkCanvas* canvas = surf->getCanvas();
|
|
|
|
SkASSERT_RELEASE(canvas);
|
|
|
|
|
|
|
|
canvas->clear(SK_ColorRED);
|
|
|
|
|
2016-03-17 21:31:39 +00:00
|
|
|
sk_sp<SkSpecialImage> img(surf->makeImageSnapshot());
|
2016-02-04 18:52:42 +00:00
|
|
|
REPORTER_ASSERT(reporter, img);
|
|
|
|
|
2016-04-20 18:48:36 +00:00
|
|
|
const SkIRect imgSubset = img->subset();
|
2016-02-04 18:52:42 +00:00
|
|
|
REPORTER_ASSERT(reporter, surfSubset == imgSubset);
|
|
|
|
|
|
|
|
// the canvas was invalidated by the newImageSnapshot call
|
|
|
|
REPORTER_ASSERT(reporter, !surf->getCanvas());
|
|
|
|
}
|
|
|
|
|
|
|
|
DEF_TEST(SpecialSurface_Raster, reporter) {
|
|
|
|
|
|
|
|
SkImageInfo info = SkImageInfo::MakeN32(kSmallerSize, kSmallerSize, kOpaque_SkAlphaType);
|
2021-04-19 23:27:09 +00:00
|
|
|
sk_sp<SkSpecialSurface> surf(SkSpecialSurface::MakeRaster(info, SkSurfaceProps()));
|
2016-02-04 18:52:42 +00:00
|
|
|
|
|
|
|
test_surface(surf, reporter, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
DEF_TEST(SpecialSurface_Raster2, reporter) {
|
|
|
|
|
|
|
|
SkBitmap bm;
|
|
|
|
bm.allocN32Pixels(kFullSize, kFullSize, true);
|
|
|
|
|
|
|
|
const SkIRect subset = SkIRect::MakeXYWH(kPad, kPad, kSmallerSize, kSmallerSize);
|
|
|
|
|
2021-04-19 23:27:09 +00:00
|
|
|
sk_sp<SkSpecialSurface> surf(SkSpecialSurface::MakeFromBitmap(subset, bm, SkSurfaceProps()));
|
2016-02-04 18:52:42 +00:00
|
|
|
|
|
|
|
test_surface(surf, reporter, kPad);
|
|
|
|
|
|
|
|
// TODO: check that the clear didn't escape the active region
|
|
|
|
}
|
|
|
|
|
2016-06-28 15:07:26 +00:00
|
|
|
DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SpecialSurface_Gpu1, reporter, ctxInfo) {
|
2021-05-20 18:58:24 +00:00
|
|
|
auto dContext = ctxInfo.directContext();
|
2020-07-06 14:56:46 +00:00
|
|
|
|
2021-05-20 18:58:24 +00:00
|
|
|
for (auto colorType : { kRGBA_8888_SkColorType, kRGBA_1010102_SkColorType }) {
|
|
|
|
if (!dContext->colorTypeSupportedAsSurface(colorType)) {
|
2018-03-02 16:01:10 +00:00
|
|
|
continue;
|
|
|
|
}
|
2021-05-20 18:58:24 +00:00
|
|
|
|
|
|
|
SkImageInfo ii = SkImageInfo::Make({ kSmallerSize, kSmallerSize }, colorType,
|
|
|
|
kPremul_SkAlphaType);
|
|
|
|
|
2022-02-17 17:02:48 +00:00
|
|
|
auto surf(SkSpecialSurface::MakeRenderTarget(dContext, ii, SkSurfaceProps(),
|
|
|
|
kTopLeft_GrSurfaceOrigin));
|
2018-03-02 16:01:10 +00:00
|
|
|
test_surface(surf, reporter, 0);
|
|
|
|
}
|
2016-02-04 18:52:42 +00:00
|
|
|
}
|