2013-04-09 15:04:12 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2013 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
2018-12-19 20:42:06 +00:00
|
|
|
#include <set>
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/core/SkSurface.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/SkAutoPixmapStorage.h"
|
2020-01-27 21:11:57 +00:00
|
|
|
#include "src/core/SkCompressedDataUtils.h"
|
2020-06-12 20:58:17 +00:00
|
|
|
#include "src/gpu/GrBackendUtils.h"
|
2020-01-28 22:02:49 +00:00
|
|
|
#include "src/gpu/GrBitmapTextureMaker.h"
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "src/gpu/GrContextPriv.h"
|
|
|
|
#include "src/gpu/GrGpu.h"
|
2019-09-30 16:15:30 +00:00
|
|
|
#include "src/gpu/GrImageInfo.h"
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "src/gpu/GrProxyProvider.h"
|
2019-08-14 21:00:30 +00:00
|
|
|
#include "src/gpu/GrRenderTarget.h"
|
2020-05-29 13:54:07 +00:00
|
|
|
#include "src/gpu/GrRenderTargetContext.h"
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "src/gpu/GrResourceProvider.h"
|
2020-03-05 19:14:18 +00:00
|
|
|
#include "src/gpu/GrTexture.h"
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "src/gpu/GrTexturePriv.h"
|
|
|
|
#include "tests/Test.h"
|
2019-05-07 17:29:22 +00:00
|
|
|
#include "tests/TestUtils.h"
|
2013-04-09 15:04:12 +00:00
|
|
|
|
2014-11-25 15:41:12 +00:00
|
|
|
// Tests that GrSurface::asTexture(), GrSurface::asRenderTarget(), and static upcasting of texture
|
|
|
|
// and render targets to GrSurface all work as expected.
|
2019-04-03 16:04:45 +00:00
|
|
|
DEF_GPUTEST_FOR_MOCK_CONTEXT(GrSurface, reporter, ctxInfo) {
|
2020-07-06 14:56:46 +00:00
|
|
|
auto context = ctxInfo.directContext();
|
2019-02-04 18:26:26 +00:00
|
|
|
auto resourceProvider = context->priv().resourceProvider();
|
2018-01-16 20:07:54 +00:00
|
|
|
|
2020-02-07 19:17:25 +00:00
|
|
|
static constexpr SkISize kDesc = {256, 256};
|
2019-08-05 16:58:39 +00:00
|
|
|
auto format = context->priv().caps()->getDefaultBackendFormat(GrColorType::kRGBA_8888,
|
|
|
|
GrRenderable::kYes);
|
2019-09-17 13:01:56 +00:00
|
|
|
sk_sp<GrSurface> texRT1 =
|
2020-02-07 19:17:25 +00:00
|
|
|
resourceProvider->createTexture(kDesc, format, GrRenderable::kYes, 1, GrMipMapped::kNo,
|
2019-09-17 13:01:56 +00:00
|
|
|
SkBudgeted::kNo, GrProtected::kNo);
|
2014-11-25 15:41:12 +00:00
|
|
|
|
2017-04-06 11:59:41 +00:00
|
|
|
REPORTER_ASSERT(reporter, texRT1.get() == texRT1->asRenderTarget());
|
|
|
|
REPORTER_ASSERT(reporter, texRT1.get() == texRT1->asTexture());
|
2015-12-01 12:35:26 +00:00
|
|
|
REPORTER_ASSERT(reporter, static_cast<GrSurface*>(texRT1->asRenderTarget()) ==
|
|
|
|
texRT1->asTexture());
|
|
|
|
REPORTER_ASSERT(reporter, texRT1->asRenderTarget() ==
|
|
|
|
static_cast<GrSurface*>(texRT1->asTexture()));
|
|
|
|
REPORTER_ASSERT(reporter, static_cast<GrSurface*>(texRT1->asRenderTarget()) ==
|
|
|
|
static_cast<GrSurface*>(texRT1->asTexture()));
|
2014-11-25 15:41:12 +00:00
|
|
|
|
2019-09-17 13:01:56 +00:00
|
|
|
sk_sp<GrTexture> tex1 =
|
2020-02-07 19:17:25 +00:00
|
|
|
resourceProvider->createTexture(kDesc, format, GrRenderable::kNo, 1, GrMipMapped::kNo,
|
2019-09-17 13:01:56 +00:00
|
|
|
SkBudgeted::kNo, GrProtected::kNo);
|
2015-12-01 12:35:26 +00:00
|
|
|
REPORTER_ASSERT(reporter, nullptr == tex1->asRenderTarget());
|
2017-04-06 11:59:41 +00:00
|
|
|
REPORTER_ASSERT(reporter, tex1.get() == tex1->asTexture());
|
|
|
|
REPORTER_ASSERT(reporter, static_cast<GrSurface*>(tex1.get()) == tex1->asTexture());
|
2013-04-09 15:04:12 +00:00
|
|
|
|
2019-06-04 15:03:06 +00:00
|
|
|
GrBackendTexture backendTex = context->createBackendTexture(
|
2019-06-04 11:16:10 +00:00
|
|
|
256, 256, kRGBA_8888_SkColorType,
|
2019-07-01 19:04:06 +00:00
|
|
|
SkColors::kTransparent, GrMipMapped::kNo, GrRenderable::kNo, GrProtected::kNo);
|
2015-11-10 19:54:56 +00:00
|
|
|
|
2019-01-24 21:03:07 +00:00
|
|
|
sk_sp<GrSurface> texRT2 = resourceProvider->wrapRenderableBackendTexture(
|
2020-03-27 14:42:15 +00:00
|
|
|
backendTex, 1, kBorrow_GrWrapOwnership, GrWrapCacheable::kNo);
|
Revert "Revert "Plumb GrBackendTexture throughout skia.""
This reverts commit 7fa5c31c2c9af834bee66d5fcf476e250076c8d6.
Reason for revert: Relanding this change now that other fixes have landed.
Original change's description:
> Revert "Plumb GrBackendTexture throughout skia."
>
> This reverts commit 7da62b9059f3c1d31624a0e4da96ee5f908f9c12.
>
> Reason for revert: fix android roll
>
> Original change's description:
> > Plumb GrBackendTexture throughout skia.
> >
> > Bug: skia:
> > Change-Id: I1bae6768ee7229818a83ba608035a1f7867e6875
> > Reviewed-on: https://skia-review.googlesource.com/13645
> > Commit-Queue: Greg Daniel <egdaniel@google.com>
> > Reviewed-by: Robert Phillips <robertphillips@google.com>
> >
>
> TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com,brianosman@google.com,reviews@skia.org,stani@google.com
> NOPRESUBMIT=true
> NOTREECHECKS=true
> NOTRY=true
>
> Change-Id: I5cb8763cc837c83ebc6d10366fe2dd3efe35fb89
> Reviewed-on: https://skia-review.googlesource.com/13773
> Reviewed-by: Stan Iliev <stani@google.com>
> Commit-Queue: Stan Iliev <stani@google.com>
>
TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com,reviews@skia.org,brianosman@google.com,stani@google.com
# Not skipping CQ checks because original CL landed > 1 day ago.
Change-Id: I92bc074e4fe37fa5c83186afadc472c03802e8f2
Reviewed-on: https://skia-review.googlesource.com/13975
Reviewed-by: Greg Daniel <egdaniel@google.com>
Commit-Queue: Greg Daniel <egdaniel@google.com>
2017-04-20 16:41:55 +00:00
|
|
|
|
2016-10-27 16:30:08 +00:00
|
|
|
REPORTER_ASSERT(reporter, texRT2.get() == texRT2->asRenderTarget());
|
|
|
|
REPORTER_ASSERT(reporter, texRT2.get() == texRT2->asTexture());
|
2015-12-01 12:35:26 +00:00
|
|
|
REPORTER_ASSERT(reporter, static_cast<GrSurface*>(texRT2->asRenderTarget()) ==
|
|
|
|
texRT2->asTexture());
|
|
|
|
REPORTER_ASSERT(reporter, texRT2->asRenderTarget() ==
|
|
|
|
static_cast<GrSurface*>(texRT2->asTexture()));
|
|
|
|
REPORTER_ASSERT(reporter, static_cast<GrSurface*>(texRT2->asRenderTarget()) ==
|
|
|
|
static_cast<GrSurface*>(texRT2->asTexture()));
|
2013-04-09 15:04:12 +00:00
|
|
|
|
2019-05-20 12:38:07 +00:00
|
|
|
context->deleteBackendTexture(backendTex);
|
2013-04-09 15:04:12 +00:00
|
|
|
}
|
|
|
|
|
2019-08-14 18:23:53 +00:00
|
|
|
// This test checks that the isFormatTexturable and isFormatRenderable are
|
2017-05-22 17:23:19 +00:00
|
|
|
// consistent with createTexture's result.
|
|
|
|
DEF_GPUTEST_FOR_ALL_CONTEXTS(GrSurfaceRenderability, reporter, ctxInfo) {
|
2020-07-06 14:56:46 +00:00
|
|
|
auto context = ctxInfo.directContext();
|
2019-02-04 18:26:26 +00:00
|
|
|
GrProxyProvider* proxyProvider = context->priv().proxyProvider();
|
|
|
|
GrResourceProvider* resourceProvider = context->priv().resourceProvider();
|
|
|
|
const GrCaps* caps = context->priv().caps();
|
2017-05-22 17:23:19 +00:00
|
|
|
|
2019-08-05 16:58:39 +00:00
|
|
|
// TODO: Should only need format here but need to determine compression type from format
|
|
|
|
// without config.
|
2019-12-16 19:20:53 +00:00
|
|
|
auto createTexture = [](SkISize dimensions, GrColorType colorType,
|
2019-08-05 16:58:39 +00:00
|
|
|
const GrBackendFormat& format, GrRenderable renderable,
|
2019-06-27 14:52:13 +00:00
|
|
|
GrResourceProvider* rp) -> sk_sp<GrTexture> {
|
2020-06-12 20:58:17 +00:00
|
|
|
SkImage::CompressionType compression = GrBackendFormatToCompressionType(format);
|
2019-12-13 16:17:46 +00:00
|
|
|
if (compression != SkImage::CompressionType::kNone) {
|
2019-06-27 14:52:13 +00:00
|
|
|
if (renderable == GrRenderable::kYes) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2020-01-27 21:11:57 +00:00
|
|
|
auto size = SkCompressedDataSize(compression, dimensions, nullptr, false);
|
2019-06-27 14:52:13 +00:00
|
|
|
auto data = SkData::MakeUninitialized(size);
|
|
|
|
SkColor4f color = {0, 0, 0, 0};
|
2019-12-16 19:20:53 +00:00
|
|
|
GrFillInCompressedData(compression, dimensions, GrMipMapped::kNo,
|
|
|
|
(char*)data->writable_data(), color);
|
2020-01-14 19:33:24 +00:00
|
|
|
return rp->createCompressedTexture(dimensions, format, SkBudgeted::kNo,
|
2020-01-21 20:25:58 +00:00
|
|
|
GrMipMapped::kNo, GrProtected::kNo, data.get());
|
2019-06-27 14:52:13 +00:00
|
|
|
} else {
|
2020-02-07 19:17:25 +00:00
|
|
|
return rp->createTexture(dimensions, format, renderable, 1, GrMipMapped::kNo,
|
|
|
|
SkBudgeted::kNo, GrProtected::kNo);
|
2019-06-27 14:52:13 +00:00
|
|
|
}
|
|
|
|
};
|
2017-05-22 17:23:19 +00:00
|
|
|
|
2020-02-07 19:17:25 +00:00
|
|
|
static constexpr SkISize kDims = {64, 64};
|
2019-07-09 16:34:38 +00:00
|
|
|
|
2019-08-01 14:08:07 +00:00
|
|
|
const std::vector<GrCaps::TestFormatColorTypeCombination>& combos =
|
|
|
|
caps->getTestingCombinations();
|
|
|
|
|
|
|
|
for (auto combo : combos) {
|
2019-07-16 11:47:56 +00:00
|
|
|
|
2019-08-01 14:08:07 +00:00
|
|
|
SkASSERT(combo.fColorType != GrColorType::kUnknown);
|
|
|
|
SkASSERT(combo.fFormat.isValid());
|
|
|
|
|
|
|
|
// Right now Vulkan has two backend formats that support ABGR_4444 (R4G4B4A4 and B4G4R4A4).
|
|
|
|
// Until we can create textures directly from the backend format this yields some
|
|
|
|
// ambiguity in what is actually supported and which textures can be created.
|
|
|
|
if (ctxInfo.backend() == kVulkan_GrBackend && combo.fColorType == GrColorType::kABGR_4444) {
|
2019-07-16 11:47:56 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-02-14 15:47:18 +00:00
|
|
|
// Check if 'isFormatTexturable' agrees with 'createTexture' and that the mipmap
|
|
|
|
// support check is working
|
|
|
|
{
|
|
|
|
bool isCompressed = caps->isFormatCompressed(combo.fFormat);
|
2020-03-30 18:21:04 +00:00
|
|
|
bool isTexturable = caps->isFormatTexturable(combo.fFormat);
|
2019-12-16 18:40:51 +00:00
|
|
|
|
2020-02-14 15:47:18 +00:00
|
|
|
sk_sp<GrSurface> tex = createTexture(kDims, combo.fColorType, combo.fFormat,
|
|
|
|
GrRenderable::kNo, resourceProvider);
|
|
|
|
REPORTER_ASSERT(reporter, SkToBool(tex) == isTexturable,
|
|
|
|
"ct:%s format:%s, tex:%d, isTexturable:%d",
|
|
|
|
GrColorTypeToStr(combo.fColorType), combo.fFormat.toStr().c_str(),
|
|
|
|
SkToBool(tex), isTexturable);
|
|
|
|
|
|
|
|
// Check that the lack of mipmap support blocks the creation of mipmapped
|
|
|
|
// proxies
|
|
|
|
bool expectedMipMapability = isTexturable && caps->mipMapSupport() && !isCompressed;
|
|
|
|
|
|
|
|
sk_sp<GrTextureProxy> proxy = proxyProvider->createProxy(
|
2020-03-27 00:37:01 +00:00
|
|
|
combo.fFormat, kDims, GrRenderable::kNo, 1, GrMipMapped::kYes,
|
2020-02-14 15:47:18 +00:00
|
|
|
SkBackingFit::kExact, SkBudgeted::kNo, GrProtected::kNo);
|
|
|
|
REPORTER_ASSERT(reporter, SkToBool(proxy.get()) == expectedMipMapability,
|
|
|
|
"ct:%s format:%s, tex:%d, expectedMipMapability:%d",
|
|
|
|
GrColorTypeToStr(combo.fColorType), combo.fFormat.toStr().c_str(),
|
|
|
|
SkToBool(proxy.get()), expectedMipMapability);
|
|
|
|
}
|
2019-08-14 18:23:53 +00:00
|
|
|
|
2020-02-14 15:47:18 +00:00
|
|
|
// Check if 'isFormatAsColorTypeRenderable' agrees with 'createTexture' (w/o MSAA)
|
|
|
|
{
|
|
|
|
bool isRenderable = caps->isFormatRenderable(combo.fFormat, 1);
|
2019-08-01 14:08:07 +00:00
|
|
|
|
2020-02-14 15:47:18 +00:00
|
|
|
sk_sp<GrSurface> tex = resourceProvider->createTexture(
|
|
|
|
kDims, combo.fFormat, GrRenderable::kYes, 1, GrMipMapped::kNo, SkBudgeted::kNo,
|
|
|
|
GrProtected::kNo);
|
|
|
|
REPORTER_ASSERT(reporter, SkToBool(tex) == isRenderable,
|
|
|
|
"ct:%s format:%s, tex:%d, isRenderable:%d",
|
|
|
|
GrColorTypeToStr(combo.fColorType), combo.fFormat.toStr().c_str(),
|
|
|
|
SkToBool(tex), isRenderable);
|
|
|
|
}
|
2019-08-01 14:08:07 +00:00
|
|
|
|
2020-02-14 15:47:18 +00:00
|
|
|
// Check if 'isFormatAsColorTypeRenderable' agrees with 'createTexture' w/ MSAA
|
|
|
|
{
|
|
|
|
bool isRenderable = caps->isFormatRenderable(combo.fFormat, 2);
|
2019-08-01 14:08:07 +00:00
|
|
|
|
2020-02-14 15:47:18 +00:00
|
|
|
sk_sp<GrSurface> tex = resourceProvider->createTexture(
|
|
|
|
kDims, combo.fFormat, GrRenderable::kYes, 2, GrMipMapped::kNo, SkBudgeted::kNo,
|
|
|
|
GrProtected::kNo);
|
|
|
|
REPORTER_ASSERT(reporter, SkToBool(tex) == isRenderable,
|
|
|
|
"ct:%s format:%s, tex:%d, isRenderable:%d",
|
|
|
|
GrColorTypeToStr(combo.fColorType), combo.fFormat.toStr().c_str(),
|
|
|
|
SkToBool(tex), isRenderable);
|
2017-05-22 17:23:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "src/gpu/GrDrawingManager.h"
|
2019-06-18 13:58:02 +00:00
|
|
|
#include "src/gpu/GrSurfaceProxy.h"
|
2017-05-23 20:53:47 +00:00
|
|
|
|
2019-08-01 14:08:07 +00:00
|
|
|
// For each context, set it to always clear the textures and then run through all the
|
|
|
|
// supported formats checking that the textures are actually cleared
|
2019-07-16 15:52:08 +00:00
|
|
|
DEF_GPUTEST(InitialTextureClear, reporter, baseOptions) {
|
|
|
|
GrContextOptions options = baseOptions;
|
|
|
|
options.fClearAllTextures = true;
|
2019-08-02 16:26:22 +00:00
|
|
|
|
2017-05-23 20:53:47 +00:00
|
|
|
static constexpr int kSize = 100;
|
2019-08-02 16:26:22 +00:00
|
|
|
static constexpr SkColor kClearColor = 0xABABABAB;
|
2019-08-01 14:08:07 +00:00
|
|
|
|
|
|
|
const SkImageInfo info = SkImageInfo::Make(kSize, kSize, kRGBA_8888_SkColorType,
|
|
|
|
kPremul_SkAlphaType);
|
|
|
|
|
2019-08-02 16:26:22 +00:00
|
|
|
SkAutoPixmapStorage readback;
|
|
|
|
readback.alloc(info);
|
|
|
|
|
2020-02-07 19:17:25 +00:00
|
|
|
SkISize desc;
|
2019-08-01 14:08:07 +00:00
|
|
|
desc.fWidth = desc.fHeight = kSize;
|
|
|
|
|
2019-07-16 15:52:08 +00:00
|
|
|
for (int ct = 0; ct < sk_gpu_test::GrContextFactory::kContextTypeCnt; ++ct) {
|
|
|
|
sk_gpu_test::GrContextFactory factory(options);
|
|
|
|
auto contextType = static_cast<sk_gpu_test::GrContextFactory::ContextType>(ct);
|
|
|
|
if (!sk_gpu_test::GrContextFactory::IsRenderingContext(contextType)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
auto context = factory.get(contextType);
|
|
|
|
if (!context) {
|
2017-05-23 20:53:47 +00:00
|
|
|
continue;
|
|
|
|
}
|
2019-07-16 15:52:08 +00:00
|
|
|
|
|
|
|
GrProxyProvider* proxyProvider = context->priv().proxyProvider();
|
2019-08-01 14:08:07 +00:00
|
|
|
const GrCaps* caps = context->priv().caps();
|
2019-07-16 15:52:08 +00:00
|
|
|
|
2019-08-01 14:08:07 +00:00
|
|
|
const std::vector<GrCaps::TestFormatColorTypeCombination>& combos =
|
|
|
|
caps->getTestingCombinations();
|
|
|
|
|
|
|
|
for (auto combo : combos) {
|
|
|
|
|
|
|
|
SkASSERT(combo.fColorType != GrColorType::kUnknown);
|
|
|
|
SkASSERT(combo.fFormat.isValid());
|
|
|
|
|
2020-03-30 18:21:04 +00:00
|
|
|
if (!caps->isFormatTexturable(combo.fFormat)) {
|
2017-05-23 20:53:47 +00:00
|
|
|
continue;
|
|
|
|
}
|
2019-08-01 14:08:07 +00:00
|
|
|
|
2019-09-26 15:04:28 +00:00
|
|
|
auto checkColor = [reporter](const GrCaps::TestFormatColorTypeCombination& combo,
|
|
|
|
uint32_t readColor) {
|
|
|
|
// We expect that if there is no alpha in the src color type and we read it to a
|
|
|
|
// color type with alpha that we will get one for alpha rather than zero. We used to
|
|
|
|
// require this but the Intel Iris 6100 on Win 10 test bot doesn't put one in the
|
|
|
|
// alpha channel when reading back from GL_RG16 or GL_RG16F. So now we allow either.
|
2020-03-26 20:17:56 +00:00
|
|
|
uint32_t channels = GrColorTypeChannelFlags(combo.fColorType);
|
|
|
|
bool allowAlphaOne = !(channels & kAlpha_SkColorChannelFlag);
|
2019-09-26 15:04:28 +00:00
|
|
|
if (allowAlphaOne) {
|
|
|
|
if (readColor != 0x00000000 && readColor != 0xFF000000) {
|
|
|
|
ERRORF(reporter,
|
|
|
|
"Failed on ct %s format %s 0x%08x is not 0x00000000 or 0xFF000000",
|
|
|
|
GrColorTypeToStr(combo.fColorType), combo.fFormat.toStr().c_str(),
|
|
|
|
readColor);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (readColor) {
|
|
|
|
ERRORF(reporter, "Failed on ct %s format %s 0x%08x != 0x00000000",
|
|
|
|
GrColorTypeToStr(combo.fColorType), combo.fFormat.toStr().c_str(),
|
|
|
|
readColor);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
};
|
2019-08-01 14:08:07 +00:00
|
|
|
|
2019-07-17 13:59:59 +00:00
|
|
|
for (auto renderable : {GrRenderable::kNo, GrRenderable::kYes}) {
|
2019-08-01 14:08:07 +00:00
|
|
|
if (renderable == GrRenderable::kYes &&
|
2019-08-06 16:05:31 +00:00
|
|
|
!caps->isFormatAsColorTypeRenderable(combo.fColorType, combo.fFormat)) {
|
2019-07-16 15:52:08 +00:00
|
|
|
continue;
|
|
|
|
}
|
2019-08-01 14:08:07 +00:00
|
|
|
|
|
|
|
for (auto fit : {SkBackingFit::kApprox, SkBackingFit::kExact}) {
|
|
|
|
|
|
|
|
// Does directly allocating a texture clear it?
|
|
|
|
{
|
2018-09-27 15:28:03 +00:00
|
|
|
auto proxy = proxyProvider->testingOnly_createInstantiatedProxy(
|
2020-03-27 00:37:01 +00:00
|
|
|
{kSize, kSize}, combo.fFormat, renderable, 1, fit, SkBudgeted::kYes,
|
|
|
|
GrProtected::kNo);
|
2019-08-01 14:08:07 +00:00
|
|
|
if (proxy) {
|
2020-01-14 14:56:04 +00:00
|
|
|
GrSwizzle swizzle = caps->getReadSwizzle(combo.fFormat,
|
|
|
|
combo.fColorType);
|
|
|
|
GrSurfaceProxyView view(std::move(proxy), kTopLeft_GrSurfaceOrigin,
|
|
|
|
swizzle);
|
|
|
|
auto texCtx = GrSurfaceContext::Make(context, std::move(view),
|
2019-12-19 21:41:40 +00:00
|
|
|
combo.fColorType,
|
|
|
|
kPremul_SkAlphaType, nullptr);
|
2019-08-01 14:08:07 +00:00
|
|
|
|
2019-08-02 16:26:22 +00:00
|
|
|
readback.erase(kClearColor);
|
|
|
|
if (texCtx->readPixels(readback.info(), readback.writable_addr(),
|
|
|
|
readback.rowBytes(), {0, 0})) {
|
2019-08-01 14:08:07 +00:00
|
|
|
for (int i = 0; i < kSize * kSize; ++i) {
|
2019-09-26 15:04:28 +00:00
|
|
|
if (!checkColor(combo, readback.addr32()[i])) {
|
2019-08-01 14:08:07 +00:00
|
|
|
break;
|
|
|
|
}
|
2017-05-23 20:53:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-07-16 11:47:56 +00:00
|
|
|
|
2019-08-01 14:08:07 +00:00
|
|
|
context->priv().testingOnly_purgeAllUnlockedResources();
|
|
|
|
}
|
2019-07-16 11:47:56 +00:00
|
|
|
|
2019-08-01 14:08:07 +00:00
|
|
|
// Try creating the texture as a deferred proxy.
|
|
|
|
{
|
2019-08-21 13:38:10 +00:00
|
|
|
std::unique_ptr<GrSurfaceContext> surfCtx;
|
2019-08-01 14:08:07 +00:00
|
|
|
if (renderable == GrRenderable::kYes) {
|
2020-01-08 16:52:34 +00:00
|
|
|
surfCtx = GrRenderTargetContext::Make(
|
|
|
|
context, combo.fColorType, nullptr, fit,
|
|
|
|
{desc.fWidth, desc.fHeight}, 1, GrMipMapped::kNo,
|
|
|
|
GrProtected::kNo, kTopLeft_GrSurfaceOrigin);
|
2019-08-01 14:08:07 +00:00
|
|
|
} else {
|
2019-12-19 21:41:40 +00:00
|
|
|
surfCtx = GrSurfaceContext::Make(
|
|
|
|
context, {desc.fWidth, desc.fHeight}, combo.fFormat,
|
|
|
|
GrRenderable::kNo, 1, GrMipMapped::kNo, GrProtected::kNo,
|
|
|
|
kTopLeft_GrSurfaceOrigin, combo.fColorType,
|
|
|
|
kUnknown_SkAlphaType, nullptr, fit, SkBudgeted::kYes);
|
2019-07-16 15:52:08 +00:00
|
|
|
}
|
2019-08-01 14:08:07 +00:00
|
|
|
if (!surfCtx) {
|
2017-09-25 16:26:58 +00:00
|
|
|
continue;
|
|
|
|
}
|
2019-07-16 15:52:08 +00:00
|
|
|
|
2019-08-02 16:26:22 +00:00
|
|
|
readback.erase(kClearColor);
|
|
|
|
if (surfCtx->readPixels(readback.info(), readback.writable_addr(),
|
|
|
|
readback.rowBytes(), {0, 0})) {
|
2019-08-01 14:08:07 +00:00
|
|
|
for (int i = 0; i < kSize * kSize; ++i) {
|
2019-09-26 15:04:28 +00:00
|
|
|
if (!checkColor(combo, readback.addr32()[i])) {
|
2019-08-01 14:08:07 +00:00
|
|
|
break;
|
2017-05-23 20:53:47 +00:00
|
|
|
}
|
|
|
|
}
|
2017-09-25 16:26:58 +00:00
|
|
|
}
|
2019-08-01 14:08:07 +00:00
|
|
|
context->priv().testingOnly_purgeAllUnlockedResources();
|
2017-05-23 20:53:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-12-06 15:00:03 +00:00
|
|
|
|
|
|
|
DEF_GPUTEST_FOR_RENDERING_CONTEXTS(ReadOnlyTexture, reporter, context_info) {
|
2019-06-10 19:09:34 +00:00
|
|
|
auto fillPixels = [](SkPixmap* p, const std::function<uint32_t(int x, int y)>& f) {
|
2018-12-06 15:00:03 +00:00
|
|
|
for (int y = 0; y < p->height(); ++y) {
|
|
|
|
for (int x = 0; x < p->width(); ++x) {
|
|
|
|
*p->writable_addr32(x, y) = f(x, y);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
auto comparePixels = [](const SkPixmap& p1, const SkPixmap& p2, skiatest::Reporter* reporter) {
|
|
|
|
SkASSERT(p1.info() == p2.info());
|
|
|
|
for (int y = 0; y < p1.height(); ++y) {
|
|
|
|
for (int x = 0; x < p1.width(); ++x) {
|
|
|
|
REPORTER_ASSERT(reporter, p1.getColor(x, y) == p2.getColor(x, y));
|
|
|
|
if (p1.getColor(x, y) != p2.getColor(x, y)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static constexpr int kSize = 100;
|
2019-07-23 17:44:16 +00:00
|
|
|
SkImageInfo ii = SkImageInfo::Make(kSize, kSize, kRGBA_8888_SkColorType, kPremul_SkAlphaType);
|
|
|
|
SkAutoPixmapStorage srcPixmap;
|
|
|
|
srcPixmap.alloc(ii);
|
|
|
|
fillPixels(&srcPixmap,
|
2019-06-10 19:09:34 +00:00
|
|
|
[](int x, int y) {
|
|
|
|
return (0xFFU << 24) | (x << 16) | (y << 8) | uint8_t((x * y) & 0xFF);
|
|
|
|
});
|
2018-12-06 15:00:03 +00:00
|
|
|
|
2020-07-06 14:56:46 +00:00
|
|
|
auto context = context_info.directContext();
|
2019-02-04 18:26:26 +00:00
|
|
|
GrProxyProvider* proxyProvider = context->priv().proxyProvider();
|
2018-12-06 15:00:03 +00:00
|
|
|
|
|
|
|
// We test both kRW in addition to kRead mostly to ensure that the calls are structured such
|
|
|
|
// that they'd succeed if the texture wasn't kRead. We want to be sure we're failing with
|
|
|
|
// kRead for the right reason.
|
|
|
|
for (auto ioType : {kRead_GrIOType, kRW_GrIOType}) {
|
2019-09-30 17:21:25 +00:00
|
|
|
auto backendTex = context->createBackendTexture(&srcPixmap, 1,
|
|
|
|
GrRenderable::kYes, GrProtected::kNo);
|
2019-06-10 19:09:34 +00:00
|
|
|
|
2020-03-27 14:42:15 +00:00
|
|
|
auto proxy = proxyProvider->wrapBackendTexture(
|
|
|
|
backendTex, kBorrow_GrWrapOwnership, GrWrapCacheable::kNo, ioType);
|
2020-01-14 14:56:04 +00:00
|
|
|
GrSwizzle swizzle = context->priv().caps()->getReadSwizzle(proxy->backendFormat(),
|
|
|
|
GrColorType::kRGBA_8888);
|
|
|
|
GrSurfaceProxyView view(proxy, kTopLeft_GrSurfaceOrigin, swizzle);
|
|
|
|
auto surfContext = GrSurfaceContext::Make(context, std::move(view), GrColorType::kRGBA_8888,
|
2019-12-19 21:41:40 +00:00
|
|
|
kPremul_SkAlphaType, nullptr);
|
2018-12-06 15:00:03 +00:00
|
|
|
|
|
|
|
// Read pixels should work with a read-only texture.
|
2019-07-23 17:44:16 +00:00
|
|
|
{
|
|
|
|
SkAutoPixmapStorage read;
|
|
|
|
read.alloc(srcPixmap.info());
|
|
|
|
auto readResult = surfContext->readPixels(srcPixmap.info(), read.writable_addr(),
|
|
|
|
0, { 0, 0 });
|
|
|
|
REPORTER_ASSERT(reporter, readResult);
|
|
|
|
if (readResult) {
|
|
|
|
comparePixels(srcPixmap, read, reporter);
|
|
|
|
}
|
2018-12-06 15:00:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Write pixels should not work with a read-only texture.
|
|
|
|
SkAutoPixmapStorage write;
|
2019-07-23 17:44:16 +00:00
|
|
|
write.alloc(srcPixmap.info());
|
|
|
|
fillPixels(&write, [&srcPixmap](int x, int y) { return ~*srcPixmap.addr32(); });
|
|
|
|
auto writeResult = surfContext->writePixels(srcPixmap.info(), write.addr(), 0, {0, 0});
|
2018-12-06 15:00:03 +00:00
|
|
|
REPORTER_ASSERT(reporter, writeResult == (ioType == kRW_GrIOType));
|
|
|
|
// Try the low level write.
|
2020-05-14 19:45:44 +00:00
|
|
|
context->flushAndSubmit();
|
2019-02-04 18:26:26 +00:00
|
|
|
auto gpuWriteResult = context->priv().getGpu()->writePixels(
|
2019-08-01 19:19:29 +00:00
|
|
|
proxy->peekTexture(), 0, 0, kSize, kSize, GrColorType::kRGBA_8888,
|
|
|
|
GrColorType::kRGBA_8888, write.addr32(),
|
2019-07-02 16:25:21 +00:00
|
|
|
kSize * GrColorTypeBytesPerPixel(GrColorType::kRGBA_8888));
|
2018-12-06 15:00:03 +00:00
|
|
|
REPORTER_ASSERT(reporter, gpuWriteResult == (ioType == kRW_GrIOType));
|
|
|
|
|
2020-01-28 22:02:49 +00:00
|
|
|
SkBitmap copySrcBitmap;
|
|
|
|
copySrcBitmap.installPixels(write);
|
|
|
|
copySrcBitmap.setImmutable();
|
|
|
|
|
2020-03-18 14:06:13 +00:00
|
|
|
GrBitmapTextureMaker maker(context, copySrcBitmap,
|
|
|
|
GrImageTexGenPolicy::kNew_Uncached_Budgeted);
|
2020-02-28 23:07:32 +00:00
|
|
|
auto copySrc = maker.view(GrMipMapped::kNo);
|
2020-01-28 22:02:49 +00:00
|
|
|
|
2020-02-03 19:17:08 +00:00
|
|
|
REPORTER_ASSERT(reporter, copySrc.proxy());
|
2020-04-02 16:50:34 +00:00
|
|
|
auto copyResult = surfContext->testCopy(copySrc.proxy());
|
2018-12-06 15:00:03 +00:00
|
|
|
REPORTER_ASSERT(reporter, copyResult == (ioType == kRW_GrIOType));
|
|
|
|
// Try the low level copy.
|
2020-05-14 19:45:44 +00:00
|
|
|
context->flushAndSubmit();
|
2019-02-04 18:26:26 +00:00
|
|
|
auto gpuCopyResult = context->priv().getGpu()->copySurface(
|
2020-02-03 19:17:08 +00:00
|
|
|
proxy->peekSurface(), copySrc.proxy()->peekSurface(), SkIRect::MakeWH(kSize, kSize),
|
Reland "Reland "Remove support for copyAsDraw in gpu copySurface.""
This reverts commit 4c6f9b767034c6812d868108516c2580dce3cb56.
Reason for revert: Landing with neuxs 7 and androind one fixes
Original change's description:
> Revert "Reland "Remove support for copyAsDraw in gpu copySurface.""
>
> This reverts commit 84ea04949cabc87a88d06c5c6f6aeb944a745911.
>
> Reason for revert: nexus 7 and android one broken
>
> Original change's description:
> > Reland "Remove support for copyAsDraw in gpu copySurface."
> >
> > This reverts commit c5167c053bd58e6afbad83fe493c0231df3f9704.
> >
> > Reason for revert: fixed
> >
> > Original change's description:
> > > Revert "Remove support for copyAsDraw in gpu copySurface."
> > >
> > > This reverts commit 6565506463db042d3d543a1707f473cdf1ef4e9e.
> > >
> > > Reason for revert: seems to break things?
> > >
> > > Original change's description:
> > > > Remove support for copyAsDraw in gpu copySurface.
> > > >
> > > > The major changes on a higher lever are:
> > > > 1) The majority of all copies now go through GrSurfaceProxy::Copy which
> > > > takes in a proxy and returns a new one with the data copied to it. This
> > > > is the most common use case within Ganesh.
> > > >
> > > > 2) The backend copy calls no longer do draws, require origins to be the
> > > > same, and won't do any swizzling or adjustment of subrects. They are
> > > > all implemented to be dumb copy this data to this other spot.
> > > >
> > > > 3) The GrSurfaceContext copy call has now been moved to priv and renamed
> > > > copyNoDraw, and a new priv copyAsDraw was added to GrRenderTargetContext.
> > > >
> > > > 4) WritePixels and ReplaceRenderTarget both need to specifiy the destination
> > > > of copies. They are the only users (besides the GrSurfaceProxy::Copy) which
> > > > call the priv methods on GrSurfaceContext.
> > > >
> > > > Change-Id: Iaf1eb3a73ccaf39a75af77e281dae594f809186f
> > > > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/217459
> > > > Reviewed-by: Brian Salomon <bsalomon@google.com>
> > > > Commit-Queue: Greg Daniel <egdaniel@google.com>
> > >
> > > TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com
> > >
> > > Change-Id: Id43aa8aa1451e794342e930441d9975b90e6b59f
> > > No-Presubmit: true
> > > No-Tree-Checks: true
> > > No-Try: true
> > > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/218549
> > > Reviewed-by: Greg Daniel <egdaniel@google.com>
> > > Commit-Queue: Greg Daniel <egdaniel@google.com>
> >
> > TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com
> >
> > Change-Id: I1a96f85ae2ff7622a6b57406755d478e7fbcf56e
> > No-Presubmit: true
> > No-Tree-Checks: true
> > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/218797
> > Reviewed-by: Brian Salomon <bsalomon@google.com>
> > Commit-Queue: Greg Daniel <egdaniel@google.com>
>
> TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com
>
> Change-Id: I310930a9df30535f45a065263a40239141e15562
> No-Presubmit: true
> No-Tree-Checks: true
> No-Try: true
> Reviewed-on: https://skia-review.googlesource.com/c/skia/+/219384
> Reviewed-by: Greg Daniel <egdaniel@google.com>
> Commit-Queue: Greg Daniel <egdaniel@google.com>
TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com
Change-Id: I88df4f19aa26ed77b5af4e25d138387cbabd1934
No-Presubmit: true
No-Tree-Checks: true
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/219386
Commit-Queue: Greg Daniel <egdaniel@google.com>
Reviewed-by: Greg Daniel <egdaniel@google.com>
2019-06-07 15:43:30 +00:00
|
|
|
{0, 0});
|
2018-12-06 15:00:03 +00:00
|
|
|
REPORTER_ASSERT(reporter, gpuCopyResult == (ioType == kRW_GrIOType));
|
|
|
|
|
|
|
|
// Mip regen should not work with a read only texture.
|
2019-02-04 18:26:26 +00:00
|
|
|
if (context->priv().caps()->mipMapSupport()) {
|
2019-10-25 00:07:39 +00:00
|
|
|
DeleteBackendTexture(context, backendTex);
|
2019-06-04 15:03:06 +00:00
|
|
|
backendTex = context->createBackendTexture(
|
2019-06-04 11:16:10 +00:00
|
|
|
kSize, kSize, kRGBA_8888_SkColorType,
|
2019-07-01 19:04:06 +00:00
|
|
|
SkColors::kTransparent, GrMipMapped::kYes, GrRenderable::kYes,
|
|
|
|
GrProtected::kNo);
|
2020-03-27 14:42:15 +00:00
|
|
|
proxy = proxyProvider->wrapBackendTexture(backendTex, kBorrow_GrWrapOwnership,
|
|
|
|
GrWrapCacheable::kNo, ioType);
|
2020-05-14 19:45:44 +00:00
|
|
|
context->flushAndSubmit();
|
2018-12-06 15:00:03 +00:00
|
|
|
proxy->peekTexture()->texturePriv().markMipMapsDirty(); // avoids assert in GrGpu.
|
|
|
|
auto regenResult =
|
2019-02-04 18:26:26 +00:00
|
|
|
context->priv().getGpu()->regenerateMipMapLevels(proxy->peekTexture());
|
2018-12-06 15:00:03 +00:00
|
|
|
REPORTER_ASSERT(reporter, regenResult == (ioType == kRW_GrIOType));
|
|
|
|
}
|
2019-10-25 00:07:39 +00:00
|
|
|
DeleteBackendTexture(context, backendTex);
|
2018-12-06 15:00:03 +00:00
|
|
|
}
|
|
|
|
}
|
2018-12-19 20:42:06 +00:00
|
|
|
|
Reland "Reland "Remove support for copyAsDraw in gpu copySurface.""
This reverts commit 4c6f9b767034c6812d868108516c2580dce3cb56.
Reason for revert: Landing with neuxs 7 and androind one fixes
Original change's description:
> Revert "Reland "Remove support for copyAsDraw in gpu copySurface.""
>
> This reverts commit 84ea04949cabc87a88d06c5c6f6aeb944a745911.
>
> Reason for revert: nexus 7 and android one broken
>
> Original change's description:
> > Reland "Remove support for copyAsDraw in gpu copySurface."
> >
> > This reverts commit c5167c053bd58e6afbad83fe493c0231df3f9704.
> >
> > Reason for revert: fixed
> >
> > Original change's description:
> > > Revert "Remove support for copyAsDraw in gpu copySurface."
> > >
> > > This reverts commit 6565506463db042d3d543a1707f473cdf1ef4e9e.
> > >
> > > Reason for revert: seems to break things?
> > >
> > > Original change's description:
> > > > Remove support for copyAsDraw in gpu copySurface.
> > > >
> > > > The major changes on a higher lever are:
> > > > 1) The majority of all copies now go through GrSurfaceProxy::Copy which
> > > > takes in a proxy and returns a new one with the data copied to it. This
> > > > is the most common use case within Ganesh.
> > > >
> > > > 2) The backend copy calls no longer do draws, require origins to be the
> > > > same, and won't do any swizzling or adjustment of subrects. They are
> > > > all implemented to be dumb copy this data to this other spot.
> > > >
> > > > 3) The GrSurfaceContext copy call has now been moved to priv and renamed
> > > > copyNoDraw, and a new priv copyAsDraw was added to GrRenderTargetContext.
> > > >
> > > > 4) WritePixels and ReplaceRenderTarget both need to specifiy the destination
> > > > of copies. They are the only users (besides the GrSurfaceProxy::Copy) which
> > > > call the priv methods on GrSurfaceContext.
> > > >
> > > > Change-Id: Iaf1eb3a73ccaf39a75af77e281dae594f809186f
> > > > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/217459
> > > > Reviewed-by: Brian Salomon <bsalomon@google.com>
> > > > Commit-Queue: Greg Daniel <egdaniel@google.com>
> > >
> > > TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com
> > >
> > > Change-Id: Id43aa8aa1451e794342e930441d9975b90e6b59f
> > > No-Presubmit: true
> > > No-Tree-Checks: true
> > > No-Try: true
> > > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/218549
> > > Reviewed-by: Greg Daniel <egdaniel@google.com>
> > > Commit-Queue: Greg Daniel <egdaniel@google.com>
> >
> > TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com
> >
> > Change-Id: I1a96f85ae2ff7622a6b57406755d478e7fbcf56e
> > No-Presubmit: true
> > No-Tree-Checks: true
> > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/218797
> > Reviewed-by: Brian Salomon <bsalomon@google.com>
> > Commit-Queue: Greg Daniel <egdaniel@google.com>
>
> TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com
>
> Change-Id: I310930a9df30535f45a065263a40239141e15562
> No-Presubmit: true
> No-Tree-Checks: true
> No-Try: true
> Reviewed-on: https://skia-review.googlesource.com/c/skia/+/219384
> Reviewed-by: Greg Daniel <egdaniel@google.com>
> Commit-Queue: Greg Daniel <egdaniel@google.com>
TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com
Change-Id: I88df4f19aa26ed77b5af4e25d138387cbabd1934
No-Presubmit: true
No-Tree-Checks: true
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/219386
Commit-Queue: Greg Daniel <egdaniel@google.com>
Reviewed-by: Greg Daniel <egdaniel@google.com>
2019-06-07 15:43:30 +00:00
|
|
|
static const int kSurfSize = 10;
|
|
|
|
|
2020-07-20 19:00:36 +00:00
|
|
|
static sk_sp<GrTexture> make_wrapped_texture(GrDirectContext* dContext, GrRenderable renderable) {
|
2020-05-06 15:40:03 +00:00
|
|
|
GrBackendTexture backendTexture;
|
2020-07-20 19:00:36 +00:00
|
|
|
CreateBackendTexture(dContext, &backendTexture, kSurfSize, kSurfSize, kRGBA_8888_SkColorType,
|
2020-05-06 15:40:03 +00:00
|
|
|
SkColors::kTransparent, GrMipMapped::kNo, renderable, GrProtected::kNo);
|
2020-05-06 19:31:10 +00:00
|
|
|
SkASSERT(backendTexture.isValid());
|
2019-02-22 15:44:19 +00:00
|
|
|
sk_sp<GrTexture> texture;
|
2019-05-13 14:40:06 +00:00
|
|
|
if (GrRenderable::kYes == renderable) {
|
2020-07-20 19:00:36 +00:00
|
|
|
texture = dContext->priv().resourceProvider()->wrapRenderableBackendTexture(
|
2020-03-27 14:42:15 +00:00
|
|
|
backendTexture, 1, kBorrow_GrWrapOwnership, GrWrapCacheable::kNo);
|
2019-02-22 15:44:19 +00:00
|
|
|
} else {
|
2020-07-20 19:00:36 +00:00
|
|
|
texture = dContext->priv().resourceProvider()->wrapBackendTexture(
|
2020-03-27 14:42:15 +00:00
|
|
|
backendTexture, kBorrow_GrWrapOwnership, GrWrapCacheable::kNo, kRW_GrIOType);
|
2019-02-22 15:44:19 +00:00
|
|
|
}
|
|
|
|
// Add a release proc that deletes the GrBackendTexture.
|
|
|
|
struct ReleaseContext {
|
2020-07-20 19:00:36 +00:00
|
|
|
GrDirectContext* fDContext;
|
2019-02-22 15:44:19 +00:00
|
|
|
GrBackendTexture fBackendTexture;
|
2018-12-19 20:42:06 +00:00
|
|
|
};
|
2019-02-22 15:44:19 +00:00
|
|
|
auto release = [](void* rc) {
|
|
|
|
auto releaseContext = static_cast<ReleaseContext*>(rc);
|
2020-07-20 19:00:36 +00:00
|
|
|
auto dContext = releaseContext->fDContext;
|
|
|
|
dContext->deleteBackendTexture(releaseContext->fBackendTexture);
|
2019-02-22 15:44:19 +00:00
|
|
|
delete releaseContext;
|
2018-12-19 20:42:06 +00:00
|
|
|
};
|
2020-07-20 19:00:36 +00:00
|
|
|
texture->setRelease(release, new ReleaseContext{dContext, backendTexture});
|
2019-02-22 15:44:19 +00:00
|
|
|
return texture;
|
|
|
|
}
|
2018-12-19 20:42:06 +00:00
|
|
|
|
2020-07-20 19:00:36 +00:00
|
|
|
static sk_sp<GrTexture> make_normal_texture(GrDirectContext* dContext, GrRenderable renderable) {
|
2020-02-07 19:17:25 +00:00
|
|
|
SkISize desc;
|
Reland "Reland "Remove support for copyAsDraw in gpu copySurface.""
This reverts commit 4c6f9b767034c6812d868108516c2580dce3cb56.
Reason for revert: Landing with neuxs 7 and androind one fixes
Original change's description:
> Revert "Reland "Remove support for copyAsDraw in gpu copySurface.""
>
> This reverts commit 84ea04949cabc87a88d06c5c6f6aeb944a745911.
>
> Reason for revert: nexus 7 and android one broken
>
> Original change's description:
> > Reland "Remove support for copyAsDraw in gpu copySurface."
> >
> > This reverts commit c5167c053bd58e6afbad83fe493c0231df3f9704.
> >
> > Reason for revert: fixed
> >
> > Original change's description:
> > > Revert "Remove support for copyAsDraw in gpu copySurface."
> > >
> > > This reverts commit 6565506463db042d3d543a1707f473cdf1ef4e9e.
> > >
> > > Reason for revert: seems to break things?
> > >
> > > Original change's description:
> > > > Remove support for copyAsDraw in gpu copySurface.
> > > >
> > > > The major changes on a higher lever are:
> > > > 1) The majority of all copies now go through GrSurfaceProxy::Copy which
> > > > takes in a proxy and returns a new one with the data copied to it. This
> > > > is the most common use case within Ganesh.
> > > >
> > > > 2) The backend copy calls no longer do draws, require origins to be the
> > > > same, and won't do any swizzling or adjustment of subrects. They are
> > > > all implemented to be dumb copy this data to this other spot.
> > > >
> > > > 3) The GrSurfaceContext copy call has now been moved to priv and renamed
> > > > copyNoDraw, and a new priv copyAsDraw was added to GrRenderTargetContext.
> > > >
> > > > 4) WritePixels and ReplaceRenderTarget both need to specifiy the destination
> > > > of copies. They are the only users (besides the GrSurfaceProxy::Copy) which
> > > > call the priv methods on GrSurfaceContext.
> > > >
> > > > Change-Id: Iaf1eb3a73ccaf39a75af77e281dae594f809186f
> > > > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/217459
> > > > Reviewed-by: Brian Salomon <bsalomon@google.com>
> > > > Commit-Queue: Greg Daniel <egdaniel@google.com>
> > >
> > > TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com
> > >
> > > Change-Id: Id43aa8aa1451e794342e930441d9975b90e6b59f
> > > No-Presubmit: true
> > > No-Tree-Checks: true
> > > No-Try: true
> > > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/218549
> > > Reviewed-by: Greg Daniel <egdaniel@google.com>
> > > Commit-Queue: Greg Daniel <egdaniel@google.com>
> >
> > TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com
> >
> > Change-Id: I1a96f85ae2ff7622a6b57406755d478e7fbcf56e
> > No-Presubmit: true
> > No-Tree-Checks: true
> > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/218797
> > Reviewed-by: Brian Salomon <bsalomon@google.com>
> > Commit-Queue: Greg Daniel <egdaniel@google.com>
>
> TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com
>
> Change-Id: I310930a9df30535f45a065263a40239141e15562
> No-Presubmit: true
> No-Tree-Checks: true
> No-Try: true
> Reviewed-on: https://skia-review.googlesource.com/c/skia/+/219384
> Reviewed-by: Greg Daniel <egdaniel@google.com>
> Commit-Queue: Greg Daniel <egdaniel@google.com>
TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com
Change-Id: I88df4f19aa26ed77b5af4e25d138387cbabd1934
No-Presubmit: true
No-Tree-Checks: true
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/219386
Commit-Queue: Greg Daniel <egdaniel@google.com>
Reviewed-by: Greg Daniel <egdaniel@google.com>
2019-06-07 15:43:30 +00:00
|
|
|
desc.fWidth = desc.fHeight = kSurfSize;
|
2020-07-20 19:00:36 +00:00
|
|
|
auto format = dContext->priv().caps()->getDefaultBackendFormat(GrColorType::kRGBA_8888,
|
|
|
|
renderable);
|
|
|
|
return dContext->priv().resourceProvider()->createTexture(
|
2019-09-17 13:01:56 +00:00
|
|
|
desc, format, renderable, 1, GrMipMapped::kNo, SkBudgeted::kNo, GrProtected::kNo);
|
2019-02-22 15:44:19 +00:00
|
|
|
}
|
2018-12-19 20:42:06 +00:00
|
|
|
|
2019-02-22 15:44:19 +00:00
|
|
|
DEF_GPUTEST(TextureIdleProcTest, reporter, options) {
|
|
|
|
// Various ways of making textures.
|
2020-07-20 19:00:36 +00:00
|
|
|
auto makeWrapped = [](GrDirectContext* dContext) {
|
|
|
|
return make_wrapped_texture(dContext, GrRenderable::kNo);
|
2019-05-13 14:40:06 +00:00
|
|
|
};
|
2020-07-20 19:00:36 +00:00
|
|
|
auto makeWrappedRenderable = [](GrDirectContext* dContext) {
|
|
|
|
return make_wrapped_texture(dContext, GrRenderable::kYes);
|
2019-05-13 14:40:06 +00:00
|
|
|
};
|
2020-07-20 19:00:36 +00:00
|
|
|
auto makeNormal = [](GrDirectContext* dContext) {
|
|
|
|
return make_normal_texture(dContext, GrRenderable::kNo);
|
2019-05-13 14:40:06 +00:00
|
|
|
};
|
2020-07-20 19:00:36 +00:00
|
|
|
auto makeRenderable = [](GrDirectContext* dContext) {
|
|
|
|
return make_normal_texture(dContext, GrRenderable::kYes);
|
2018-12-19 20:42:06 +00:00
|
|
|
};
|
|
|
|
|
2020-07-20 19:00:36 +00:00
|
|
|
std::function<sk_sp<GrTexture>(GrDirectContext*)> makers[] = {
|
|
|
|
makeWrapped,
|
|
|
|
makeWrappedRenderable,
|
|
|
|
makeNormal,
|
|
|
|
makeRenderable
|
|
|
|
};
|
2018-12-19 20:42:06 +00:00
|
|
|
|
|
|
|
// Add a unique key, or not.
|
|
|
|
auto addKey = [](GrTexture* texture) {
|
|
|
|
static uint32_t gN = 0;
|
|
|
|
static const GrUniqueKey::Domain kDomain = GrUniqueKey::GenerateDomain();
|
|
|
|
GrUniqueKey key;
|
|
|
|
GrUniqueKey::Builder builder(&key, kDomain, 1);
|
|
|
|
builder[0] = gN++;
|
|
|
|
builder.finish();
|
|
|
|
texture->resourcePriv().setUniqueKey(key);
|
|
|
|
};
|
|
|
|
auto dontAddKey = [](GrTexture* texture) {};
|
|
|
|
std::function<void(GrTexture*)> keyAdders[] = {addKey, dontAddKey};
|
|
|
|
|
|
|
|
for (const auto& m : makers) {
|
|
|
|
for (const auto& keyAdder : keyAdders) {
|
|
|
|
for (int type = 0; type < sk_gpu_test::GrContextFactory::kContextTypeCnt; ++type) {
|
|
|
|
sk_gpu_test::GrContextFactory factory;
|
|
|
|
auto contextType = static_cast<sk_gpu_test::GrContextFactory::ContextType>(type);
|
2020-07-20 19:00:36 +00:00
|
|
|
auto dContext = factory.get(contextType);
|
|
|
|
if (!dContext) {
|
2018-12-19 20:42:06 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The callback we add simply adds an integer to a set.
|
|
|
|
std::set<int> idleIDs;
|
|
|
|
struct Context {
|
|
|
|
std::set<int>* fIdleIDs;
|
|
|
|
int fNum;
|
|
|
|
};
|
|
|
|
auto proc = [](void* context) {
|
|
|
|
static_cast<Context*>(context)->fIdleIDs->insert(
|
|
|
|
static_cast<Context*>(context)->fNum);
|
|
|
|
delete static_cast<Context*>(context);
|
|
|
|
};
|
|
|
|
|
|
|
|
// Makes a texture, possibly adds a key, and sets the callback.
|
2020-07-20 19:00:36 +00:00
|
|
|
auto make = [&m, &keyAdder, &proc, &idleIDs](GrDirectContext* dContext, int num) {
|
|
|
|
sk_sp<GrTexture> texture = m(dContext);
|
2019-03-08 18:25:19 +00:00
|
|
|
texture->addIdleProc(proc, new Context{&idleIDs, num},
|
|
|
|
GrTexture::IdleState::kFinished);
|
2018-12-19 20:42:06 +00:00
|
|
|
keyAdder(texture.get());
|
|
|
|
return texture;
|
|
|
|
};
|
|
|
|
|
2020-07-20 19:00:36 +00:00
|
|
|
auto texture = make(dContext, 1);
|
2018-12-19 20:42:06 +00:00
|
|
|
REPORTER_ASSERT(reporter, idleIDs.find(1) == idleIDs.end());
|
2019-07-17 13:59:59 +00:00
|
|
|
auto renderable = GrRenderable(SkToBool(texture->asRenderTarget()));
|
2018-12-19 20:42:06 +00:00
|
|
|
auto backendFormat = texture->backendFormat();
|
|
|
|
texture.reset();
|
|
|
|
REPORTER_ASSERT(reporter, idleIDs.find(1) != idleIDs.end());
|
|
|
|
|
2020-07-20 19:00:36 +00:00
|
|
|
texture = make(dContext, 2);
|
2019-02-22 15:44:19 +00:00
|
|
|
int w = texture->width();
|
|
|
|
int h = texture->height();
|
2018-12-19 20:42:06 +00:00
|
|
|
SkImageInfo info =
|
2019-02-22 15:44:19 +00:00
|
|
|
SkImageInfo::Make(w, h, kRGBA_8888_SkColorType, kPremul_SkAlphaType);
|
2020-07-20 19:00:36 +00:00
|
|
|
auto rt = SkSurface::MakeRenderTarget(dContext, SkBudgeted::kNo, info, 0, nullptr);
|
2018-12-19 20:42:06 +00:00
|
|
|
auto rtc = rt->getCanvas()->internal_private_accessTopLayerRenderTargetContext();
|
2020-03-23 22:32:50 +00:00
|
|
|
auto singleUseLazyCB = [&texture](GrResourceProvider*,
|
|
|
|
const GrSurfaceProxy::LazySurfaceDesc&) {
|
2019-04-01 16:29:34 +00:00
|
|
|
auto mode = GrSurfaceProxy::LazyInstantiationKeyMode::kSynced;
|
|
|
|
if (texture->getUniqueKey().isValid()) {
|
|
|
|
mode = GrSurfaceProxy::LazyInstantiationKeyMode::kUnsynced;
|
|
|
|
}
|
2019-08-30 20:19:42 +00:00
|
|
|
return GrSurfaceProxy::LazyCallbackResult{std::move(texture), true, mode};
|
2018-12-19 20:42:06 +00:00
|
|
|
};
|
2020-02-07 19:17:25 +00:00
|
|
|
SkISize desc;
|
2019-02-22 15:44:19 +00:00
|
|
|
desc.fWidth = w;
|
|
|
|
desc.fHeight = h;
|
2019-01-24 20:58:58 +00:00
|
|
|
SkBudgeted budgeted;
|
|
|
|
if (texture->resourcePriv().budgetedType() == GrBudgetedType::kBudgeted) {
|
|
|
|
budgeted = SkBudgeted::kYes;
|
|
|
|
} else {
|
|
|
|
budgeted = SkBudgeted::kNo;
|
|
|
|
}
|
2020-07-20 19:00:36 +00:00
|
|
|
auto proxy = dContext->priv().proxyProvider()->createLazyProxy(
|
2020-03-27 00:37:01 +00:00
|
|
|
singleUseLazyCB, backendFormat, desc, renderable, 1, GrMipMapped::kNo,
|
|
|
|
GrMipMapsStatus::kNotAllocated, GrInternalSurfaceFlags ::kNone,
|
|
|
|
SkBackingFit::kExact, budgeted, GrProtected::kNo,
|
|
|
|
GrSurfaceProxy::UseAllocator::kYes);
|
2020-07-20 19:00:36 +00:00
|
|
|
GrSwizzle readSwizzle = dContext->priv().caps()->getReadSwizzle(
|
2020-01-22 21:58:15 +00:00
|
|
|
backendFormat, GrColorType::kRGBA_8888);
|
2020-01-30 19:55:05 +00:00
|
|
|
GrSurfaceProxyView view(std::move(proxy), kTopLeft_GrSurfaceOrigin, readSwizzle);
|
2020-05-29 13:54:07 +00:00
|
|
|
rtc->drawTexture(nullptr, view, kPremul_SkAlphaType,
|
2019-10-15 18:01:49 +00:00
|
|
|
GrSamplerState::Filter::kNearest, SkBlendMode::kSrcOver,
|
|
|
|
SkPMColor4f(), SkRect::MakeWH(w, h), SkRect::MakeWH(w, h),
|
|
|
|
GrAA::kNo, GrQuadAAFlags::kNone, SkCanvas::kFast_SrcRectConstraint,
|
|
|
|
SkMatrix::I(), nullptr);
|
2018-12-19 20:42:06 +00:00
|
|
|
// We still have the proxy, which should remain instantiated, thereby keeping the
|
|
|
|
// texture not purgeable.
|
|
|
|
REPORTER_ASSERT(reporter, idleIDs.find(2) == idleIDs.end());
|
2020-07-20 19:00:36 +00:00
|
|
|
dContext->flushAndSubmit();
|
2018-12-19 20:42:06 +00:00
|
|
|
REPORTER_ASSERT(reporter, idleIDs.find(2) == idleIDs.end());
|
2020-07-20 19:00:36 +00:00
|
|
|
dContext->priv().getGpu()->testingOnly_flushGpuAndSync();
|
2018-12-19 20:42:06 +00:00
|
|
|
REPORTER_ASSERT(reporter, idleIDs.find(2) == idleIDs.end());
|
|
|
|
|
|
|
|
// This time we move the proxy into the draw.
|
2020-05-29 13:54:07 +00:00
|
|
|
rtc->drawTexture(nullptr, std::move(view), kPremul_SkAlphaType,
|
2020-01-30 19:55:05 +00:00
|
|
|
GrSamplerState::Filter::kNearest, SkBlendMode::kSrcOver,
|
|
|
|
SkPMColor4f(), SkRect::MakeWH(w, h), SkRect::MakeWH(w, h),
|
|
|
|
GrAA::kNo, GrQuadAAFlags::kNone,
|
2019-11-23 00:09:27 +00:00
|
|
|
SkCanvas::kFast_SrcRectConstraint, SkMatrix::I(), nullptr);
|
2018-12-19 20:42:06 +00:00
|
|
|
REPORTER_ASSERT(reporter, idleIDs.find(2) == idleIDs.end());
|
2020-07-20 19:00:36 +00:00
|
|
|
dContext->flushAndSubmit();
|
|
|
|
dContext->priv().getGpu()->testingOnly_flushGpuAndSync();
|
2018-12-19 20:42:06 +00:00
|
|
|
// Now that the draw is fully consumed by the GPU, the texture should be idle.
|
|
|
|
REPORTER_ASSERT(reporter, idleIDs.find(2) != idleIDs.end());
|
|
|
|
|
2019-01-24 17:18:33 +00:00
|
|
|
// Make sure we make the call during various shutdown scenarios where the texture
|
|
|
|
// might persist after context is destroyed, abandoned, etc. We test three
|
|
|
|
// variations of each scenario. One where the texture is just created. Another,
|
|
|
|
// where the texture has been used in a draw and then the context is flushed. And
|
|
|
|
// one where the the texture was drawn but the context is not flushed.
|
|
|
|
// In each scenario we test holding a ref beyond the context shutdown and not.
|
|
|
|
|
2020-06-04 13:02:04 +00:00
|
|
|
// These tests are difficult to get working with Vulkan, Direct3D, and Dawn.
|
|
|
|
// See http://skbug.com/8705, http://skbug.com/8277, and http://skbug.com/10326
|
2019-01-24 17:18:33 +00:00
|
|
|
GrBackendApi api = sk_gpu_test::GrContextFactory::ContextTypeBackend(contextType);
|
2020-06-04 13:02:04 +00:00
|
|
|
if (api == GrBackendApi::kVulkan || api == GrBackendApi::kDirect3D ||
|
|
|
|
api == GrBackendApi::kDawn) {
|
2019-01-24 17:18:33 +00:00
|
|
|
continue;
|
|
|
|
}
|
2019-08-30 20:19:42 +00:00
|
|
|
int id = 3;
|
2019-01-24 17:18:33 +00:00
|
|
|
enum class DrawType {
|
|
|
|
kNoDraw,
|
|
|
|
kDraw,
|
|
|
|
kDrawAndFlush,
|
|
|
|
};
|
|
|
|
for (auto drawType :
|
|
|
|
{DrawType::kNoDraw, DrawType::kDraw, DrawType::kDrawAndFlush}) {
|
|
|
|
for (bool unrefFirst : {false, true}) {
|
2020-07-20 19:00:36 +00:00
|
|
|
auto possiblyDrawAndFlush = [&dContext, &texture, drawType, unrefFirst, w,
|
2019-02-22 15:44:19 +00:00
|
|
|
h] {
|
2019-01-24 17:18:33 +00:00
|
|
|
if (drawType == DrawType::kNoDraw) {
|
|
|
|
return;
|
|
|
|
}
|
2019-02-22 15:44:19 +00:00
|
|
|
SkImageInfo info = SkImageInfo::Make(w, h, kRGBA_8888_SkColorType,
|
2019-01-24 17:18:33 +00:00
|
|
|
kPremul_SkAlphaType);
|
2020-07-20 19:00:36 +00:00
|
|
|
auto rt = SkSurface::MakeRenderTarget(dContext, SkBudgeted::kNo, info, 0,
|
2019-01-24 17:18:33 +00:00
|
|
|
nullptr);
|
2019-02-04 18:26:26 +00:00
|
|
|
auto rtc = rt->getCanvas()
|
2019-01-24 17:18:33 +00:00
|
|
|
->internal_private_accessTopLayerRenderTargetContext();
|
2020-07-20 19:00:36 +00:00
|
|
|
auto proxy = dContext->priv().proxyProvider()->testingOnly_createWrapped(
|
2020-03-27 00:37:01 +00:00
|
|
|
texture);
|
2020-07-20 19:00:36 +00:00
|
|
|
GrSwizzle swizzle = dContext->priv().caps()->getReadSwizzle(
|
2020-01-30 19:55:05 +00:00
|
|
|
proxy->backendFormat(), GrColorType::kRGBA_8888);
|
|
|
|
GrSurfaceProxyView view(std::move(proxy), kTopLeft_GrSurfaceOrigin,
|
|
|
|
swizzle);
|
2019-02-22 15:44:19 +00:00
|
|
|
rtc->drawTexture(
|
2020-05-29 13:54:07 +00:00
|
|
|
nullptr, std::move(view), kPremul_SkAlphaType,
|
2019-10-15 18:01:49 +00:00
|
|
|
GrSamplerState::Filter::kNearest, SkBlendMode::kSrcOver,
|
|
|
|
SkPMColor4f(), SkRect::MakeWH(w, h), SkRect::MakeWH(w, h),
|
|
|
|
GrAA::kNo, GrQuadAAFlags::kNone,
|
2019-02-22 15:44:19 +00:00
|
|
|
SkCanvas::kFast_SrcRectConstraint, SkMatrix::I(), nullptr);
|
2019-01-24 17:18:33 +00:00
|
|
|
if (drawType == DrawType::kDrawAndFlush) {
|
2020-07-20 19:00:36 +00:00
|
|
|
dContext->flushAndSubmit();
|
2019-01-24 17:18:33 +00:00
|
|
|
}
|
|
|
|
if (unrefFirst) {
|
|
|
|
texture.reset();
|
|
|
|
}
|
|
|
|
};
|
2020-07-20 19:00:36 +00:00
|
|
|
texture = make(dContext, id);
|
2019-01-24 17:18:33 +00:00
|
|
|
possiblyDrawAndFlush();
|
2020-07-20 19:00:36 +00:00
|
|
|
dContext->abandonContext();
|
2019-01-24 17:18:33 +00:00
|
|
|
texture.reset();
|
|
|
|
REPORTER_ASSERT(reporter, idleIDs.find(id) != idleIDs.end());
|
|
|
|
factory.destroyContexts();
|
2020-07-20 19:00:36 +00:00
|
|
|
dContext = factory.get(contextType);
|
2019-01-24 17:18:33 +00:00
|
|
|
++id;
|
|
|
|
|
|
|
|
// Similar to previous, but reset the texture after the context was
|
|
|
|
// abandoned and then destroyed.
|
2020-07-20 19:00:36 +00:00
|
|
|
texture = make(dContext, id);
|
2019-01-24 17:18:33 +00:00
|
|
|
possiblyDrawAndFlush();
|
2020-07-20 19:00:36 +00:00
|
|
|
dContext->abandonContext();
|
2019-01-24 17:18:33 +00:00
|
|
|
factory.destroyContexts();
|
|
|
|
texture.reset();
|
|
|
|
REPORTER_ASSERT(reporter, idleIDs.find(id) != idleIDs.end());
|
2020-07-20 19:00:36 +00:00
|
|
|
dContext = factory.get(contextType);
|
2019-01-24 17:18:33 +00:00
|
|
|
id++;
|
|
|
|
|
2020-07-20 19:00:36 +00:00
|
|
|
texture = make(dContext, id);
|
2019-01-24 17:18:33 +00:00
|
|
|
possiblyDrawAndFlush();
|
|
|
|
factory.destroyContexts();
|
|
|
|
texture.reset();
|
|
|
|
REPORTER_ASSERT(reporter, idleIDs.find(id) != idleIDs.end());
|
2020-07-20 19:00:36 +00:00
|
|
|
dContext = factory.get(contextType);
|
2019-01-24 17:18:33 +00:00
|
|
|
id++;
|
|
|
|
|
2020-07-20 19:00:36 +00:00
|
|
|
texture = make(dContext, id);
|
2019-01-24 17:18:33 +00:00
|
|
|
possiblyDrawAndFlush();
|
|
|
|
factory.releaseResourcesAndAbandonContexts();
|
|
|
|
texture.reset();
|
|
|
|
REPORTER_ASSERT(reporter, idleIDs.find(id) != idleIDs.end());
|
2020-07-20 19:00:36 +00:00
|
|
|
dContext = factory.get(contextType);
|
2019-01-24 17:18:33 +00:00
|
|
|
id++;
|
|
|
|
}
|
|
|
|
}
|
2018-12-19 20:42:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-02-22 15:44:19 +00:00
|
|
|
|
|
|
|
// Tests an idle proc that unrefs another resource down to zero.
|
|
|
|
DEF_GPUTEST_FOR_ALL_CONTEXTS(TextureIdleProcCacheManipulationTest, reporter, contextInfo) {
|
2020-07-06 14:56:46 +00:00
|
|
|
auto context = contextInfo.directContext();
|
2019-02-22 15:44:19 +00:00
|
|
|
|
|
|
|
// idle proc that releases another texture.
|
|
|
|
auto idleProc = [](void* texture) { reinterpret_cast<GrTexture*>(texture)->unref(); };
|
|
|
|
|
|
|
|
for (const auto& idleMaker : {make_wrapped_texture, make_normal_texture}) {
|
|
|
|
for (const auto& otherMaker : {make_wrapped_texture, make_normal_texture}) {
|
2019-03-08 18:25:19 +00:00
|
|
|
for (auto idleState :
|
|
|
|
{GrTexture::IdleState::kFlushed, GrTexture::IdleState::kFinished}) {
|
2019-05-13 14:40:06 +00:00
|
|
|
auto idleTexture = idleMaker(context, GrRenderable::kNo);
|
|
|
|
auto otherTexture = otherMaker(context, GrRenderable::kNo);
|
2019-03-08 18:25:19 +00:00
|
|
|
otherTexture->ref();
|
|
|
|
idleTexture->addIdleProc(idleProc, otherTexture.get(), idleState);
|
|
|
|
otherTexture.reset();
|
|
|
|
idleTexture.reset();
|
|
|
|
}
|
2019-02-22 15:44:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Similar to above but more complicated. This flushes the context from the idle proc.
|
|
|
|
// crbug.com/933526.
|
|
|
|
DEF_GPUTEST_FOR_ALL_CONTEXTS(TextureIdleProcFlushTest, reporter, contextInfo) {
|
2020-07-20 19:00:36 +00:00
|
|
|
auto dContext = contextInfo.directContext();
|
2019-02-22 15:44:19 +00:00
|
|
|
|
|
|
|
// idle proc that flushes the context.
|
2020-07-20 19:00:36 +00:00
|
|
|
auto idleProc = [](void* context) {
|
|
|
|
reinterpret_cast<GrDirectContext*>(context)->flushAndSubmit();
|
|
|
|
};
|
2019-02-22 15:44:19 +00:00
|
|
|
|
|
|
|
for (const auto& idleMaker : {make_wrapped_texture, make_normal_texture}) {
|
2019-03-08 18:25:19 +00:00
|
|
|
for (auto idleState : {GrTexture::IdleState::kFlushed, GrTexture::IdleState::kFinished}) {
|
2020-07-20 19:00:36 +00:00
|
|
|
auto idleTexture = idleMaker(dContext, GrRenderable::kNo);
|
|
|
|
idleTexture->addIdleProc(idleProc, dContext, idleState);
|
2019-03-08 18:25:19 +00:00
|
|
|
auto info = SkImageInfo::Make(10, 10, kRGBA_8888_SkColorType, kPremul_SkAlphaType);
|
2020-07-20 19:00:36 +00:00
|
|
|
auto surf = SkSurface::MakeRenderTarget(dContext, SkBudgeted::kNo, info, 1, nullptr);
|
2019-03-08 18:25:19 +00:00
|
|
|
// We'll draw two images to the canvas. One is a normal texture-backed image. The other
|
|
|
|
// is a wrapped-texture backed image.
|
|
|
|
surf->getCanvas()->clear(SK_ColorWHITE);
|
|
|
|
auto img1 = surf->makeImageSnapshot();
|
2019-05-07 17:29:22 +00:00
|
|
|
|
|
|
|
GrBackendTexture backendTexture;
|
|
|
|
|
2020-07-20 19:00:36 +00:00
|
|
|
if (!CreateBackendTexture(dContext, &backendTexture, info, SkColors::kBlack,
|
2019-10-25 00:07:39 +00:00
|
|
|
GrMipMapped::kNo, GrRenderable::kNo)) {
|
2019-05-07 17:29:22 +00:00
|
|
|
REPORTER_ASSERT(reporter, false);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-07-20 19:00:36 +00:00
|
|
|
auto img2 = SkImage::MakeFromTexture(dContext, backendTexture, kTopLeft_GrSurfaceOrigin,
|
2019-03-08 18:25:19 +00:00
|
|
|
info.colorType(), info.alphaType(), nullptr);
|
|
|
|
surf->getCanvas()->drawImage(std::move(img1), 0, 0);
|
|
|
|
surf->getCanvas()->drawImage(std::move(img2), 1, 1);
|
|
|
|
idleTexture.reset();
|
2019-05-07 17:29:22 +00:00
|
|
|
|
2020-07-20 19:00:36 +00:00
|
|
|
DeleteBackendTexture(dContext, backendTexture);
|
2019-03-08 18:25:19 +00:00
|
|
|
}
|
2019-02-22 15:44:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DEF_GPUTEST_FOR_ALL_CONTEXTS(TextureIdleProcRerefTest, reporter, contextInfo) {
|
2020-07-06 14:56:46 +00:00
|
|
|
auto context = contextInfo.directContext();
|
2019-02-22 15:44:19 +00:00
|
|
|
// idle proc that refs the texture
|
|
|
|
auto idleProc = [](void* texture) { reinterpret_cast<GrTexture*>(texture)->ref(); };
|
|
|
|
// release proc to check whether the texture was released or not.
|
|
|
|
auto releaseProc = [](void* isReleased) { *reinterpret_cast<bool*>(isReleased) = true; };
|
2019-03-08 18:25:19 +00:00
|
|
|
for (auto idleState : {GrTexture::IdleState::kFlushed, GrTexture::IdleState::kFinished}) {
|
|
|
|
bool isReleased = false;
|
2019-05-13 14:40:06 +00:00
|
|
|
auto idleTexture = make_normal_texture(context, GrRenderable::kNo);
|
2019-03-08 18:25:19 +00:00
|
|
|
// This test assumes the texture won't be cached (or else the release proc doesn't get
|
|
|
|
// called).
|
|
|
|
idleTexture->resourcePriv().removeScratchKey();
|
2020-05-14 19:45:44 +00:00
|
|
|
context->flushAndSubmit();
|
2019-03-08 18:25:19 +00:00
|
|
|
idleTexture->addIdleProc(idleProc, idleTexture.get(), idleState);
|
|
|
|
idleTexture->setRelease(releaseProc, &isReleased);
|
|
|
|
auto* raw = idleTexture.get();
|
|
|
|
idleTexture.reset();
|
|
|
|
REPORTER_ASSERT(reporter, !isReleased);
|
|
|
|
raw->unref();
|
|
|
|
REPORTER_ASSERT(reporter, isReleased);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DEF_GPUTEST_FOR_ALL_CONTEXTS(TextureIdleStateTest, reporter, contextInfo) {
|
2020-07-06 14:56:46 +00:00
|
|
|
auto context = contextInfo.directContext();
|
2019-03-08 18:25:19 +00:00
|
|
|
for (const auto& idleMaker : {make_wrapped_texture, make_normal_texture}) {
|
2019-05-13 14:40:06 +00:00
|
|
|
auto idleTexture = idleMaker(context, GrRenderable::kNo);
|
2019-03-08 18:25:19 +00:00
|
|
|
|
|
|
|
uint32_t flags = 0;
|
|
|
|
static constexpr uint32_t kFlushFlag = 0x1;
|
|
|
|
static constexpr uint32_t kFinishFlag = 0x2;
|
|
|
|
auto flushProc = [](void* flags) { *static_cast<uint32_t*>(flags) |= kFlushFlag; };
|
|
|
|
auto finishProc = [](void* flags) { *static_cast<uint32_t*>(flags) |= kFinishFlag; };
|
|
|
|
idleTexture->addIdleProc(flushProc, &flags, GrTexture::IdleState::kFlushed);
|
|
|
|
idleTexture->addIdleProc(finishProc, &flags, GrTexture::IdleState::kFinished);
|
|
|
|
|
|
|
|
// Insert a copy from idleTexture to another texture so that we have some queued IO on
|
|
|
|
// idleTexture.
|
Reland "Reland "Remove support for copyAsDraw in gpu copySurface.""
This reverts commit 4c6f9b767034c6812d868108516c2580dce3cb56.
Reason for revert: Landing with neuxs 7 and androind one fixes
Original change's description:
> Revert "Reland "Remove support for copyAsDraw in gpu copySurface.""
>
> This reverts commit 84ea04949cabc87a88d06c5c6f6aeb944a745911.
>
> Reason for revert: nexus 7 and android one broken
>
> Original change's description:
> > Reland "Remove support for copyAsDraw in gpu copySurface."
> >
> > This reverts commit c5167c053bd58e6afbad83fe493c0231df3f9704.
> >
> > Reason for revert: fixed
> >
> > Original change's description:
> > > Revert "Remove support for copyAsDraw in gpu copySurface."
> > >
> > > This reverts commit 6565506463db042d3d543a1707f473cdf1ef4e9e.
> > >
> > > Reason for revert: seems to break things?
> > >
> > > Original change's description:
> > > > Remove support for copyAsDraw in gpu copySurface.
> > > >
> > > > The major changes on a higher lever are:
> > > > 1) The majority of all copies now go through GrSurfaceProxy::Copy which
> > > > takes in a proxy and returns a new one with the data copied to it. This
> > > > is the most common use case within Ganesh.
> > > >
> > > > 2) The backend copy calls no longer do draws, require origins to be the
> > > > same, and won't do any swizzling or adjustment of subrects. They are
> > > > all implemented to be dumb copy this data to this other spot.
> > > >
> > > > 3) The GrSurfaceContext copy call has now been moved to priv and renamed
> > > > copyNoDraw, and a new priv copyAsDraw was added to GrRenderTargetContext.
> > > >
> > > > 4) WritePixels and ReplaceRenderTarget both need to specifiy the destination
> > > > of copies. They are the only users (besides the GrSurfaceProxy::Copy) which
> > > > call the priv methods on GrSurfaceContext.
> > > >
> > > > Change-Id: Iaf1eb3a73ccaf39a75af77e281dae594f809186f
> > > > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/217459
> > > > Reviewed-by: Brian Salomon <bsalomon@google.com>
> > > > Commit-Queue: Greg Daniel <egdaniel@google.com>
> > >
> > > TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com
> > >
> > > Change-Id: Id43aa8aa1451e794342e930441d9975b90e6b59f
> > > No-Presubmit: true
> > > No-Tree-Checks: true
> > > No-Try: true
> > > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/218549
> > > Reviewed-by: Greg Daniel <egdaniel@google.com>
> > > Commit-Queue: Greg Daniel <egdaniel@google.com>
> >
> > TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com
> >
> > Change-Id: I1a96f85ae2ff7622a6b57406755d478e7fbcf56e
> > No-Presubmit: true
> > No-Tree-Checks: true
> > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/218797
> > Reviewed-by: Brian Salomon <bsalomon@google.com>
> > Commit-Queue: Greg Daniel <egdaniel@google.com>
>
> TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com
>
> Change-Id: I310930a9df30535f45a065263a40239141e15562
> No-Presubmit: true
> No-Tree-Checks: true
> No-Try: true
> Reviewed-on: https://skia-review.googlesource.com/c/skia/+/219384
> Reviewed-by: Greg Daniel <egdaniel@google.com>
> Commit-Queue: Greg Daniel <egdaniel@google.com>
TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com
Change-Id: I88df4f19aa26ed77b5af4e25d138387cbabd1934
No-Presubmit: true
No-Tree-Checks: true
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/219386
Commit-Queue: Greg Daniel <egdaniel@google.com>
Reviewed-by: Greg Daniel <egdaniel@google.com>
2019-06-07 15:43:30 +00:00
|
|
|
SkImageInfo info = SkImageInfo::Make(kSurfSize, kSurfSize, kRGBA_8888_SkColorType,
|
|
|
|
kPremul_SkAlphaType);
|
2019-03-08 18:25:19 +00:00
|
|
|
auto rt = SkSurface::MakeRenderTarget(context, SkBudgeted::kNo, info, 0, nullptr);
|
|
|
|
auto rtc = rt->getCanvas()->internal_private_accessTopLayerRenderTargetContext();
|
2020-03-27 00:37:01 +00:00
|
|
|
auto proxy =
|
|
|
|
context->priv().proxyProvider()->testingOnly_createWrapped(std::move(idleTexture));
|
2020-05-14 19:45:44 +00:00
|
|
|
context->flushAndSubmit();
|
2020-04-02 16:50:34 +00:00
|
|
|
SkAssertResult(rtc->testCopy(proxy.get()));
|
2019-03-08 18:25:19 +00:00
|
|
|
proxy.reset();
|
|
|
|
REPORTER_ASSERT(reporter, flags == 0);
|
|
|
|
|
|
|
|
// After a flush we expect idleTexture to have reached the kFlushed state on all backends.
|
|
|
|
// On "managed" backends we expect it to reach kFinished as well. On Vulkan, the only
|
|
|
|
// current "unmanaged" backend, we *may* need a sync to reach kFinished.
|
2020-05-14 19:45:44 +00:00
|
|
|
context->flushAndSubmit();
|
2019-03-08 18:25:19 +00:00
|
|
|
if (contextInfo.backend() == kVulkan_GrBackend) {
|
|
|
|
REPORTER_ASSERT(reporter, flags & kFlushFlag);
|
|
|
|
} else {
|
|
|
|
REPORTER_ASSERT(reporter, flags == (kFlushFlag | kFinishFlag));
|
|
|
|
}
|
|
|
|
context->priv().getGpu()->testingOnly_flushGpuAndSync();
|
|
|
|
REPORTER_ASSERT(reporter, flags == (kFlushFlag | kFinishFlag));
|
|
|
|
}
|
2019-02-22 15:44:19 +00:00
|
|
|
}
|