2020-09-16 14:57:32 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2020 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "include/core/SkCanvas.h"
|
|
|
|
#include "include/core/SkDeferredDisplayListRecorder.h"
|
|
|
|
#include "include/core/SkSurfaceCharacterization.h"
|
|
|
|
#include "src/gpu/GrContextPriv.h"
|
|
|
|
#include "src/gpu/GrProxyProvider.h"
|
|
|
|
#include "src/gpu/GrRecordingContextPriv.h"
|
|
|
|
#include "src/gpu/GrRenderTargetContext.h"
|
2020-09-25 16:47:10 +00:00
|
|
|
#include "src/gpu/GrStyle.h"
|
2020-09-16 14:57:32 +00:00
|
|
|
#include "src/gpu/GrThreadSafeUniquelyKeyedProxyViewCache.h"
|
|
|
|
#include "tests/Test.h"
|
|
|
|
#include "tests/TestUtils.h"
|
|
|
|
|
2020-09-22 21:34:51 +00:00
|
|
|
#include <thread>
|
|
|
|
|
2020-09-16 14:57:32 +00:00
|
|
|
static constexpr int kImageWH = 32;
|
|
|
|
static constexpr auto kImageOrigin = kBottomLeft_GrSurfaceOrigin;
|
2020-10-06 18:52:11 +00:00
|
|
|
static constexpr int kNoID = -1;
|
2020-09-16 14:57:32 +00:00
|
|
|
|
|
|
|
static SkImageInfo default_ii(int wh) {
|
|
|
|
return SkImageInfo::Make(wh, wh, kRGBA_8888_SkColorType, kPremul_SkAlphaType);
|
|
|
|
}
|
|
|
|
|
2020-09-25 16:47:10 +00:00
|
|
|
static std::unique_ptr<GrRenderTargetContext> new_RTC(GrRecordingContext* rContext, int wh) {
|
|
|
|
return GrRenderTargetContext::Make(rContext,
|
|
|
|
GrColorType::kRGBA_8888,
|
|
|
|
nullptr,
|
|
|
|
SkBackingFit::kExact,
|
|
|
|
{wh, wh},
|
|
|
|
1,
|
|
|
|
GrMipMapped::kNo,
|
|
|
|
GrProtected::kNo,
|
|
|
|
kImageOrigin,
|
|
|
|
SkBudgeted::kYes);
|
|
|
|
}
|
|
|
|
|
2020-10-06 18:52:11 +00:00
|
|
|
static void create_key(GrUniqueKey* key, int wh, int id) {
|
2020-09-16 14:57:32 +00:00
|
|
|
static const GrUniqueKey::Domain kDomain = GrUniqueKey::GenerateDomain();
|
|
|
|
GrUniqueKey::Builder builder(key, kDomain, 1);
|
|
|
|
builder[0] = wh;
|
|
|
|
builder.finish();
|
2020-10-06 18:52:11 +00:00
|
|
|
|
|
|
|
if (id != kNoID) {
|
|
|
|
key->setCustomData(SkData::MakeWithCopy(&id, sizeof(id)));
|
|
|
|
}
|
2020-09-16 14:57:32 +00:00
|
|
|
};
|
|
|
|
|
2020-09-25 16:47:10 +00:00
|
|
|
static SkBitmap create_bitmap(int wh) {
|
2020-09-16 14:57:32 +00:00
|
|
|
SkBitmap bitmap;
|
|
|
|
|
|
|
|
bitmap.allocPixels(default_ii(wh));
|
|
|
|
|
|
|
|
SkCanvas tmp(bitmap);
|
|
|
|
tmp.clear(SK_ColorWHITE);
|
|
|
|
|
|
|
|
SkPaint blue;
|
|
|
|
blue.setColor(SK_ColorBLUE);
|
2020-09-25 16:47:10 +00:00
|
|
|
blue.setAntiAlias(false);
|
2020-09-16 14:57:32 +00:00
|
|
|
|
2020-09-25 16:47:10 +00:00
|
|
|
tmp.drawRect({10, 10, wh-10.0f, wh-10.0f}, blue);
|
2020-09-16 14:57:32 +00:00
|
|
|
|
2020-09-25 19:25:46 +00:00
|
|
|
bitmap.setImmutable();
|
2020-09-16 14:57:32 +00:00
|
|
|
return bitmap;
|
|
|
|
}
|
|
|
|
|
|
|
|
class TestHelper {
|
|
|
|
public:
|
|
|
|
struct Stats {
|
|
|
|
int fCacheHits = 0;
|
|
|
|
int fCacheMisses = 0;
|
|
|
|
|
|
|
|
int fNumSWCreations = 0;
|
2020-09-25 16:47:10 +00:00
|
|
|
int fNumLazyCreations = 0;
|
2020-09-16 14:57:32 +00:00
|
|
|
int fNumHWCreations = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
TestHelper(GrDirectContext* dContext) : fDContext(dContext) {
|
|
|
|
|
|
|
|
fDst = SkSurface::MakeRenderTarget(dContext, SkBudgeted::kNo, default_ii(kImageWH));
|
|
|
|
SkAssertResult(fDst);
|
|
|
|
|
|
|
|
SkSurfaceCharacterization characterization;
|
|
|
|
SkAssertResult(fDst->characterize(&characterization));
|
|
|
|
|
|
|
|
fRecorder1 = std::make_unique<SkDeferredDisplayListRecorder>(characterization);
|
2020-09-25 19:25:46 +00:00
|
|
|
this->ddlCanvas1()->clear(SkColors::kGreen);
|
2020-09-16 14:57:32 +00:00
|
|
|
|
|
|
|
fRecorder2 = std::make_unique<SkDeferredDisplayListRecorder>(characterization);
|
2020-09-25 19:25:46 +00:00
|
|
|
this->ddlCanvas2()->clear(SkColors::kRed);
|
2020-09-16 14:57:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
~TestHelper() {
|
2020-09-22 16:18:16 +00:00
|
|
|
fDContext->flush();
|
|
|
|
fDContext->submit(true);
|
2020-09-16 14:57:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Stats* stats() { return &fStats; }
|
|
|
|
|
2020-09-18 16:28:59 +00:00
|
|
|
int numCacheEntries() const { return this->threadSafeViewCache()->numEntries(); }
|
2020-09-16 14:57:32 +00:00
|
|
|
|
|
|
|
GrDirectContext* dContext() { return fDContext; }
|
|
|
|
|
|
|
|
SkCanvas* liveCanvas() { return fDst ? fDst->getCanvas() : nullptr; }
|
|
|
|
SkCanvas* ddlCanvas1() { return fRecorder1 ? fRecorder1->getCanvas() : nullptr; }
|
2020-09-18 18:07:43 +00:00
|
|
|
sk_sp<SkDeferredDisplayList> snap1() {
|
|
|
|
if (fRecorder1) {
|
|
|
|
sk_sp<SkDeferredDisplayList> tmp = fRecorder1->detach();
|
|
|
|
fRecorder1 = nullptr;
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
2020-09-16 14:57:32 +00:00
|
|
|
SkCanvas* ddlCanvas2() { return fRecorder2 ? fRecorder2->getCanvas() : nullptr; }
|
2020-09-18 18:07:43 +00:00
|
|
|
sk_sp<SkDeferredDisplayList> snap2() {
|
|
|
|
if (fRecorder2) {
|
|
|
|
sk_sp<SkDeferredDisplayList> tmp = fRecorder2->detach();
|
|
|
|
fRecorder2 = nullptr;
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
2020-09-16 14:57:32 +00:00
|
|
|
|
|
|
|
GrThreadSafeUniquelyKeyedProxyViewCache* threadSafeViewCache() {
|
2020-09-18 16:28:59 +00:00
|
|
|
return fDContext->priv().threadSafeViewCache();
|
|
|
|
}
|
|
|
|
|
|
|
|
const GrThreadSafeUniquelyKeyedProxyViewCache* threadSafeViewCache() const {
|
|
|
|
return fDContext->priv().threadSafeViewCache();
|
2020-09-16 14:57:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Add a draw on 'canvas' that will introduce a ref on the 'wh' view
|
|
|
|
void accessCachedView(SkCanvas* canvas,
|
|
|
|
int wh,
|
2020-10-06 18:52:11 +00:00
|
|
|
int id = kNoID,
|
2020-09-25 16:47:10 +00:00
|
|
|
bool failLookup = false,
|
|
|
|
bool failFillingIn = false) {
|
2020-09-16 14:57:32 +00:00
|
|
|
GrRecordingContext* rContext = canvas->recordingContext();
|
|
|
|
|
|
|
|
auto view = AccessCachedView(rContext, this->threadSafeViewCache(),
|
2020-10-06 18:52:11 +00:00
|
|
|
wh, failLookup, failFillingIn, id, &fStats);
|
2020-09-16 14:57:32 +00:00
|
|
|
SkASSERT(view);
|
|
|
|
|
|
|
|
auto rtc = canvas->internal_private_accessTopLayerRenderTargetContext();
|
|
|
|
|
|
|
|
rtc->drawTexture(nullptr,
|
|
|
|
view,
|
|
|
|
kPremul_SkAlphaType,
|
|
|
|
GrSamplerState::Filter::kNearest,
|
|
|
|
GrSamplerState::MipmapMode::kNone,
|
|
|
|
SkBlendMode::kSrcOver,
|
2020-09-25 19:25:46 +00:00
|
|
|
{1.0f, 1.0f, 1.0f, 1.0f},
|
2020-09-16 14:57:32 +00:00
|
|
|
SkRect::MakeWH(wh, wh),
|
|
|
|
SkRect::MakeWH(wh, wh),
|
|
|
|
GrAA::kNo,
|
|
|
|
GrQuadAAFlags::kNone,
|
|
|
|
SkCanvas::kFast_SrcRectConstraint,
|
|
|
|
SkMatrix::I(),
|
|
|
|
nullptr);
|
|
|
|
}
|
|
|
|
|
2020-09-18 18:07:43 +00:00
|
|
|
// Besides checking that the number of refs and cache hits and misses are as expected, this
|
|
|
|
// method also validates that the unique key doesn't appear in any of the other caches.
|
2020-10-06 18:52:11 +00:00
|
|
|
bool checkView(SkCanvas* canvas, int wh, int hits, int misses, int numRefs, int expectedID) {
|
2020-09-16 14:57:32 +00:00
|
|
|
if (fStats.fCacheHits != hits || fStats.fCacheMisses != misses) {
|
2020-09-22 16:18:16 +00:00
|
|
|
SkDebugf("Hits E: %d A: %d --- Misses E: %d A: %d\n",
|
|
|
|
hits, fStats.fCacheHits, misses, fStats.fCacheMisses);
|
2020-09-16 14:57:32 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
GrUniqueKey key;
|
2020-10-06 18:52:11 +00:00
|
|
|
create_key(&key, wh, kNoID);
|
2020-09-16 14:57:32 +00:00
|
|
|
|
|
|
|
auto threadSafeViewCache = this->threadSafeViewCache();
|
|
|
|
|
2020-10-06 18:52:11 +00:00
|
|
|
auto [view, data] = threadSafeViewCache->findWithData(key);
|
2020-09-22 16:18:16 +00:00
|
|
|
if (!view.proxy()) {
|
|
|
|
return false;
|
|
|
|
}
|
2020-09-16 14:57:32 +00:00
|
|
|
|
2020-10-06 18:52:11 +00:00
|
|
|
if (expectedID < 0) {
|
|
|
|
if (data) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (!data) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const int* cachedID = static_cast<const int*>(data->data());
|
|
|
|
if (*cachedID != expectedID) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-16 14:57:32 +00:00
|
|
|
if (!view.proxy()->refCntGreaterThan(numRefs+1) || // +1 for 'view's ref
|
|
|
|
view.proxy()->refCntGreaterThan(numRefs+2)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-09-18 18:07:43 +00:00
|
|
|
if (canvas) {
|
|
|
|
GrRecordingContext* rContext = canvas->recordingContext();
|
2020-09-16 14:57:32 +00:00
|
|
|
GrProxyProvider* recordingProxyProvider = rContext->priv().proxyProvider();
|
|
|
|
sk_sp<GrTextureProxy> result = recordingProxyProvider->findProxyByUniqueKey(key);
|
|
|
|
if (result) {
|
|
|
|
// views in this cache should never appear in the recorder's cache
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
GrProxyProvider* directProxyProvider = fDContext->priv().proxyProvider();
|
|
|
|
sk_sp<GrTextureProxy> result = directProxyProvider->findProxyByUniqueKey(key);
|
|
|
|
if (result) {
|
|
|
|
// views in this cache should never appear in the main proxy cache
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
auto resourceProvider = fDContext->priv().resourceProvider();
|
|
|
|
sk_sp<GrSurface> surf = resourceProvider->findByUniqueKey<GrSurface>(key);
|
|
|
|
if (surf) {
|
|
|
|
// the textures backing the views in this cache should never be discoverable in the
|
|
|
|
// resource cache
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-09-25 19:25:46 +00:00
|
|
|
bool checkImage(skiatest::Reporter* reporter, sk_sp<SkSurface> s) {
|
|
|
|
SkBitmap actual;
|
|
|
|
|
|
|
|
actual.allocPixels(default_ii(kImageWH));
|
|
|
|
|
|
|
|
if (!s->readPixels(actual, 0, 0)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
SkBitmap expected = create_bitmap(kImageWH);
|
|
|
|
|
|
|
|
const float tols[4] = { 0.0f, 0.0f, 0.0f, 0.0f };
|
|
|
|
|
|
|
|
auto error = std::function<ComparePixmapsErrorReporter>(
|
|
|
|
[reporter](int x, int y, const float diffs[4]) {
|
|
|
|
SkASSERT(x >= 0 && y >= 0);
|
|
|
|
ERRORF(reporter, "mismatch at %d, %d (%f, %f, %f %f)",
|
|
|
|
x, y, diffs[0], diffs[1], diffs[2], diffs[3]);
|
|
|
|
});
|
|
|
|
|
|
|
|
return ComparePixels(expected.pixmap(), actual.pixmap(), tols, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool checkImage(skiatest::Reporter* reporter) {
|
|
|
|
return this->checkImage(reporter, fDst);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool checkImage(skiatest::Reporter* reporter, sk_sp<SkDeferredDisplayList> ddl) {
|
|
|
|
sk_sp<SkSurface> tmp = SkSurface::MakeRenderTarget(fDContext,
|
|
|
|
SkBudgeted::kNo,
|
|
|
|
default_ii(kImageWH));
|
|
|
|
if (!tmp) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!tmp->draw(std::move(ddl))) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return this->checkImage(reporter, std::move(tmp));
|
|
|
|
}
|
|
|
|
|
2020-09-22 16:18:16 +00:00
|
|
|
size_t gpuSize(int wh) const {
|
|
|
|
GrBackendFormat format = fDContext->defaultBackendFormat(kRGBA_8888_SkColorType,
|
|
|
|
GrRenderable::kNo);
|
|
|
|
|
2020-10-01 17:46:00 +00:00
|
|
|
return GrSurface::ComputeSize(format, {wh, wh}, /*colorSamplesPerPixel=*/1,
|
|
|
|
GrMipMapped::kNo, /*binSize=*/false);
|
2020-09-22 16:18:16 +00:00
|
|
|
}
|
|
|
|
|
2020-09-16 14:57:32 +00:00
|
|
|
private:
|
|
|
|
static GrSurfaceProxyView AccessCachedView(GrRecordingContext*,
|
|
|
|
GrThreadSafeUniquelyKeyedProxyViewCache*,
|
2020-09-22 16:18:16 +00:00
|
|
|
int wh,
|
2020-10-06 18:52:11 +00:00
|
|
|
bool failLookup, bool failFillingIn, int id,
|
2020-09-25 16:47:10 +00:00
|
|
|
Stats*);
|
2020-09-16 14:57:32 +00:00
|
|
|
static GrSurfaceProxyView CreateViewOnCpu(GrRecordingContext*, int wh, Stats*);
|
2020-09-25 16:47:10 +00:00
|
|
|
static bool FillInViewOnGpu(GrDirectContext*, int wh, Stats*,
|
|
|
|
const GrSurfaceProxyView& lazyView,
|
2020-10-06 20:44:18 +00:00
|
|
|
sk_sp<GrThreadSafeUniquelyKeyedProxyViewCache::Trampoline>);
|
2020-09-16 14:57:32 +00:00
|
|
|
|
|
|
|
Stats fStats;
|
|
|
|
GrDirectContext* fDContext = nullptr;
|
|
|
|
|
|
|
|
sk_sp<SkSurface> fDst;
|
|
|
|
std::unique_ptr<SkDeferredDisplayListRecorder> fRecorder1;
|
|
|
|
std::unique_ptr<SkDeferredDisplayListRecorder> fRecorder2;
|
|
|
|
};
|
|
|
|
|
|
|
|
GrSurfaceProxyView TestHelper::CreateViewOnCpu(GrRecordingContext* rContext,
|
|
|
|
int wh,
|
|
|
|
Stats* stats) {
|
|
|
|
GrProxyProvider* proxyProvider = rContext->priv().proxyProvider();
|
|
|
|
|
2020-09-25 16:47:10 +00:00
|
|
|
sk_sp<GrTextureProxy> proxy = proxyProvider->createProxyFromBitmap(create_bitmap(wh),
|
2020-09-16 14:57:32 +00:00
|
|
|
GrMipmapped::kNo,
|
|
|
|
SkBackingFit::kExact,
|
|
|
|
SkBudgeted::kYes);
|
|
|
|
if (!proxy) {
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
GrSwizzle swizzle = rContext->priv().caps()->getReadSwizzle(proxy->backendFormat(),
|
|
|
|
GrColorType::kRGBA_8888);
|
|
|
|
++stats->fNumSWCreations;
|
|
|
|
return {std::move(proxy), kImageOrigin, swizzle};
|
|
|
|
}
|
|
|
|
|
2020-10-06 20:44:18 +00:00
|
|
|
bool TestHelper::FillInViewOnGpu(
|
|
|
|
GrDirectContext* dContext, int wh, Stats* stats,
|
|
|
|
const GrSurfaceProxyView& lazyView,
|
|
|
|
sk_sp<GrThreadSafeUniquelyKeyedProxyViewCache::Trampoline> trampoline) {
|
2020-09-25 16:47:10 +00:00
|
|
|
|
|
|
|
std::unique_ptr<GrRenderTargetContext> rtc = new_RTC(dContext, wh);
|
|
|
|
|
|
|
|
GrPaint paint;
|
|
|
|
paint.setColor4f({0.0f, 0.0f, 1.0f, 1.0f});
|
|
|
|
|
|
|
|
rtc->clear({1.0f, 1.0f, 1.0f, 1.0f});
|
|
|
|
rtc->drawRect(nullptr, std::move(paint), GrAA::kNo, SkMatrix::I(),
|
|
|
|
{ 10, 10, wh-10.0f, wh-10.0f }, &GrStyle::SimpleFill());
|
2020-09-22 16:18:16 +00:00
|
|
|
|
2020-09-16 14:57:32 +00:00
|
|
|
++stats->fNumHWCreations;
|
2020-09-25 16:47:10 +00:00
|
|
|
auto view = rtc->readSurfaceView();
|
|
|
|
|
|
|
|
SkASSERT(view.swizzle() == lazyView.swizzle());
|
|
|
|
SkASSERT(view.origin() == lazyView.origin());
|
|
|
|
trampoline->fProxy = view.asTextureProxyRef();
|
|
|
|
|
|
|
|
return true;
|
2020-09-16 14:57:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GrSurfaceProxyView TestHelper::AccessCachedView(
|
|
|
|
GrRecordingContext* rContext,
|
|
|
|
GrThreadSafeUniquelyKeyedProxyViewCache* threadSafeViewCache,
|
|
|
|
int wh,
|
2020-10-06 18:52:11 +00:00
|
|
|
bool failLookup, bool failFillingIn, int id,
|
2020-09-16 14:57:32 +00:00
|
|
|
Stats* stats) {
|
|
|
|
GrUniqueKey key;
|
2020-10-06 18:52:11 +00:00
|
|
|
create_key(&key, wh, id);
|
2020-09-16 14:57:32 +00:00
|
|
|
|
2020-09-25 16:47:10 +00:00
|
|
|
if (GrDirectContext* dContext = rContext->asDirectContext()) {
|
|
|
|
// The gpu thread gets priority over the recording threads. If the gpu thread is first,
|
|
|
|
// it crams a lazy proxy into the cache and then fills it in later.
|
2020-10-06 20:44:18 +00:00
|
|
|
auto [lazyView, trampoline] = GrThreadSafeUniquelyKeyedProxyViewCache::CreateLazyView(
|
2020-10-07 19:33:43 +00:00
|
|
|
dContext, GrColorType::kRGBA_8888, {wh, wh}, kImageOrigin, SkBackingFit::kExact);
|
2020-10-06 20:44:18 +00:00
|
|
|
++stats->fNumLazyCreations;
|
2020-09-25 16:47:10 +00:00
|
|
|
|
2020-10-06 18:52:11 +00:00
|
|
|
auto [view, data] = threadSafeViewCache->findOrAddWithData(key, lazyView);
|
2020-09-25 16:47:10 +00:00
|
|
|
if (view != lazyView) {
|
|
|
|
++stats->fCacheHits;
|
|
|
|
return view;
|
2020-10-06 18:52:11 +00:00
|
|
|
} else if (id != kNoID) {
|
|
|
|
// Make sure, in this case, that the customData stuck
|
|
|
|
SkASSERT(data);
|
|
|
|
SkDEBUGCODE(const int* cachedID = static_cast<const int*>(data->data());)
|
|
|
|
SkASSERT(*cachedID == id);
|
2020-09-25 16:47:10 +00:00
|
|
|
}
|
2020-09-16 14:57:32 +00:00
|
|
|
|
2020-09-25 16:47:10 +00:00
|
|
|
++stats->fCacheMisses;
|
2020-09-16 14:57:32 +00:00
|
|
|
|
2020-09-25 16:47:10 +00:00
|
|
|
if (failFillingIn) {
|
|
|
|
// Simulate something going horribly wrong at flush-time so no GrTexture is
|
|
|
|
// available to fulfill the lazy proxy.
|
|
|
|
return view;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!FillInViewOnGpu(dContext, wh, stats, lazyView, std::move(trampoline))) {
|
|
|
|
// In this case something has gone disastrously wrong so set up to drop the draw
|
|
|
|
// that needed this resource and reduce future pollution of the cache.
|
|
|
|
threadSafeViewCache->remove(key);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
return view;
|
2020-09-16 14:57:32 +00:00
|
|
|
} else {
|
2020-09-25 16:47:10 +00:00
|
|
|
GrSurfaceProxyView view;
|
|
|
|
|
|
|
|
// We can "fail the lookup" to simulate a threaded race condition
|
2020-09-30 14:23:38 +00:00
|
|
|
if (view = threadSafeViewCache->find(key); !failLookup && view) {
|
2020-09-25 16:47:10 +00:00
|
|
|
++stats->fCacheHits;
|
|
|
|
return view;
|
|
|
|
}
|
|
|
|
|
|
|
|
++stats->fCacheMisses;
|
|
|
|
|
2020-09-16 14:57:32 +00:00
|
|
|
view = CreateViewOnCpu(rContext, wh, stats);
|
2020-09-25 16:47:10 +00:00
|
|
|
SkASSERT(view);
|
2020-09-16 14:57:32 +00:00
|
|
|
|
2020-10-06 18:52:11 +00:00
|
|
|
auto [newView, data] = threadSafeViewCache->addWithData(key, view);
|
|
|
|
if (view == newView && id != kNoID) {
|
|
|
|
// Make sure, in this case, that the customData stuck
|
|
|
|
SkASSERT(data);
|
|
|
|
SkDEBUGCODE(const int* cachedID = static_cast<const int*>(data->data());)
|
|
|
|
SkASSERT(*cachedID == id);
|
|
|
|
}
|
|
|
|
return newView;
|
2020-09-25 16:47:10 +00:00
|
|
|
}
|
2020-09-16 14:57:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Case 1: ensure two DDL recorders share the view
|
|
|
|
DEF_GPUTEST_FOR_RENDERING_CONTEXTS(GrThreadSafeViewCache1, reporter, ctxInfo) {
|
|
|
|
TestHelper helper(ctxInfo.directContext());
|
|
|
|
|
2020-10-06 18:52:11 +00:00
|
|
|
helper.accessCachedView(helper.ddlCanvas1(), kImageWH, 1);
|
2020-09-22 16:18:16 +00:00
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(helper.ddlCanvas1(), kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 0, /*misses*/ 1, /*refs*/ 1, /*id*/ 1));
|
2020-09-16 14:57:32 +00:00
|
|
|
|
2020-10-06 18:52:11 +00:00
|
|
|
helper.accessCachedView(helper.ddlCanvas2(), kImageWH, 2);
|
2020-09-22 16:18:16 +00:00
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(helper.ddlCanvas2(), kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 1, /*misses*/ 1, /*refs*/ 2, /*id*/ 1));
|
2020-09-16 14:57:32 +00:00
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, helper.numCacheEntries() == 1);
|
2020-09-25 16:47:10 +00:00
|
|
|
REPORTER_ASSERT(reporter, helper.stats()->fNumLazyCreations == 0);
|
2020-09-16 14:57:32 +00:00
|
|
|
REPORTER_ASSERT(reporter, helper.stats()->fNumHWCreations == 0);
|
|
|
|
REPORTER_ASSERT(reporter, helper.stats()->fNumSWCreations == 1);
|
2020-09-25 19:25:46 +00:00
|
|
|
|
|
|
|
helper.checkImage(reporter, helper.snap1());
|
|
|
|
helper.checkImage(reporter, helper.snap2());
|
2020-09-16 14:57:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Case 2: ensure that, if the direct context version wins, it is reused by the DDL recorders
|
|
|
|
DEF_GPUTEST_FOR_RENDERING_CONTEXTS(GrThreadSafeViewCache2, reporter, ctxInfo) {
|
|
|
|
TestHelper helper(ctxInfo.directContext());
|
|
|
|
|
2020-10-06 18:52:11 +00:00
|
|
|
helper.accessCachedView(helper.liveCanvas(), kImageWH, 1);
|
2020-09-22 16:18:16 +00:00
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(helper.liveCanvas(), kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 0, /*misses*/ 1, /*refs*/ 1, /*id*/ 1));
|
2020-09-16 14:57:32 +00:00
|
|
|
|
2020-10-06 18:52:11 +00:00
|
|
|
helper.accessCachedView(helper.ddlCanvas1(), kImageWH, 2);
|
2020-09-22 16:18:16 +00:00
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(helper.ddlCanvas1(), kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 1, /*misses*/ 1, /*refs*/ 2, /*id*/ 1));
|
2020-09-16 14:57:32 +00:00
|
|
|
|
2020-10-06 18:52:11 +00:00
|
|
|
helper.accessCachedView(helper.ddlCanvas2(), kImageWH, 3);
|
2020-09-22 16:18:16 +00:00
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(helper.ddlCanvas2(), kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 2, /*misses*/ 1, /*refs*/ 3, /*id*/ 1));
|
2020-09-16 14:57:32 +00:00
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, helper.numCacheEntries() == 1);
|
2020-09-25 16:47:10 +00:00
|
|
|
REPORTER_ASSERT(reporter, helper.stats()->fNumLazyCreations == 1);
|
2020-09-16 14:57:32 +00:00
|
|
|
REPORTER_ASSERT(reporter, helper.stats()->fNumHWCreations == 1);
|
|
|
|
REPORTER_ASSERT(reporter, helper.stats()->fNumSWCreations == 0);
|
2020-09-25 19:25:46 +00:00
|
|
|
|
|
|
|
helper.checkImage(reporter);
|
|
|
|
helper.checkImage(reporter, helper.snap1());
|
|
|
|
helper.checkImage(reporter, helper.snap2());
|
2020-09-16 14:57:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Case 3: ensure that, if the cpu-version wins, it is reused by the direct context
|
|
|
|
DEF_GPUTEST_FOR_RENDERING_CONTEXTS(GrThreadSafeViewCache3, reporter, ctxInfo) {
|
|
|
|
TestHelper helper(ctxInfo.directContext());
|
|
|
|
|
2020-10-06 18:52:11 +00:00
|
|
|
helper.accessCachedView(helper.ddlCanvas1(), kImageWH, 1);
|
2020-09-22 16:18:16 +00:00
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(helper.ddlCanvas1(), kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 0, /*misses*/ 1, /*refs*/ 1, /*id*/ 1));
|
2020-09-16 14:57:32 +00:00
|
|
|
|
2020-10-06 18:52:11 +00:00
|
|
|
helper.accessCachedView(helper.liveCanvas(), kImageWH, 2);
|
2020-09-22 16:18:16 +00:00
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(helper.liveCanvas(), kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 1, /*misses*/ 1, /*refs*/ 2, /*id*/ 1));
|
2020-09-16 14:57:32 +00:00
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, helper.numCacheEntries() == 1);
|
2020-09-25 16:47:10 +00:00
|
|
|
REPORTER_ASSERT(reporter, helper.stats()->fNumLazyCreations == 1);
|
2020-09-16 14:57:32 +00:00
|
|
|
REPORTER_ASSERT(reporter, helper.stats()->fNumHWCreations == 0);
|
|
|
|
REPORTER_ASSERT(reporter, helper.stats()->fNumSWCreations == 1);
|
2020-09-25 19:25:46 +00:00
|
|
|
|
|
|
|
helper.checkImage(reporter);
|
|
|
|
helper.checkImage(reporter, helper.snap1());
|
2020-09-16 14:57:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Case 4: ensure that, if two DDL recorders get in a race, they still end up sharing a single view
|
|
|
|
DEF_GPUTEST_FOR_RENDERING_CONTEXTS(GrThreadSafeViewCache4, reporter, ctxInfo) {
|
|
|
|
TestHelper helper(ctxInfo.directContext());
|
|
|
|
|
2020-10-06 18:52:11 +00:00
|
|
|
helper.accessCachedView(helper.ddlCanvas1(), kImageWH, 1);
|
2020-09-22 16:18:16 +00:00
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(helper.ddlCanvas1(), kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 0, /*misses*/ 1, /*refs*/ 1, /*id*/ 1));
|
2020-09-16 14:57:32 +00:00
|
|
|
|
|
|
|
static const bool kFailLookup = true;
|
2020-10-06 18:52:11 +00:00
|
|
|
helper.accessCachedView(helper.ddlCanvas2(), kImageWH, 2, kFailLookup);
|
2020-09-22 16:18:16 +00:00
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(helper.ddlCanvas2(), kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 0, /*misses*/ 2, /*refs*/ 2, /*id*/ 1));
|
2020-09-16 14:57:32 +00:00
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, helper.numCacheEntries() == 1);
|
2020-09-25 16:47:10 +00:00
|
|
|
REPORTER_ASSERT(reporter, helper.stats()->fNumLazyCreations == 0);
|
2020-09-16 14:57:32 +00:00
|
|
|
REPORTER_ASSERT(reporter, helper.stats()->fNumHWCreations == 0);
|
|
|
|
REPORTER_ASSERT(reporter, helper.stats()->fNumSWCreations == 2);
|
2020-09-25 19:25:46 +00:00
|
|
|
|
|
|
|
helper.checkImage(reporter, helper.snap1());
|
|
|
|
helper.checkImage(reporter, helper.snap2());
|
2020-09-16 14:57:32 +00:00
|
|
|
}
|
2020-09-18 16:28:59 +00:00
|
|
|
|
2020-09-25 16:47:10 +00:00
|
|
|
// Case 4.5: check that, if a live rendering and a DDL recording get into a race, the live
|
|
|
|
// rendering takes precedence.
|
|
|
|
DEF_GPUTEST_FOR_RENDERING_CONTEXTS(GrThreadSafeViewCache4_5, reporter, ctxInfo) {
|
|
|
|
TestHelper helper(ctxInfo.directContext());
|
|
|
|
|
2020-10-06 18:52:11 +00:00
|
|
|
helper.accessCachedView(helper.liveCanvas(), kImageWH, 1);
|
2020-09-25 16:47:10 +00:00
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(helper.liveCanvas(), kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 0, /*misses*/ 1, /*refs*/ 1, /*id*/ 1));
|
2020-09-25 16:47:10 +00:00
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, helper.numCacheEntries() == 1);
|
|
|
|
REPORTER_ASSERT(reporter, helper.stats()->fNumLazyCreations == 1);
|
|
|
|
REPORTER_ASSERT(reporter, helper.stats()->fNumHWCreations == 1);
|
|
|
|
REPORTER_ASSERT(reporter, helper.stats()->fNumSWCreations == 0);
|
|
|
|
|
|
|
|
static const bool kFailLookup = true;
|
2020-10-06 18:52:11 +00:00
|
|
|
helper.accessCachedView(helper.ddlCanvas1(), kImageWH, 2, kFailLookup);
|
2020-09-25 16:47:10 +00:00
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(helper.ddlCanvas1(), kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 0, /*misses*/ 2, /*refs*/ 2, /*id*/ 1));
|
2020-09-25 16:47:10 +00:00
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, helper.numCacheEntries() == 1);
|
|
|
|
REPORTER_ASSERT(reporter, helper.stats()->fNumLazyCreations == 1);
|
|
|
|
REPORTER_ASSERT(reporter, helper.stats()->fNumHWCreations == 1);
|
|
|
|
REPORTER_ASSERT(reporter, helper.stats()->fNumSWCreations == 1);
|
2020-09-25 19:25:46 +00:00
|
|
|
|
|
|
|
helper.checkImage(reporter);
|
|
|
|
helper.checkImage(reporter, helper.snap1());
|
2020-09-25 16:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Case 4.75: check that, if a live rendering fails to generate the content needed to instantiate
|
|
|
|
// its lazy proxy, life goes on
|
|
|
|
DEF_GPUTEST_FOR_RENDERING_CONTEXTS(GrThreadSafeViewCache4_75, reporter, ctxInfo) {
|
|
|
|
auto dContext = ctxInfo.directContext();
|
|
|
|
|
|
|
|
TestHelper helper(dContext);
|
|
|
|
|
|
|
|
static const bool kFailFillingIn = true;
|
2020-10-06 18:52:11 +00:00
|
|
|
helper.accessCachedView(helper.liveCanvas(), kImageWH, kNoID, false, kFailFillingIn);
|
2020-09-25 16:47:10 +00:00
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(helper.liveCanvas(), kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 0, /*misses*/ 1, /*refs*/ 1, kNoID));
|
2020-09-25 16:47:10 +00:00
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, helper.numCacheEntries() == 1);
|
|
|
|
REPORTER_ASSERT(reporter, helper.stats()->fNumLazyCreations == 1);
|
|
|
|
REPORTER_ASSERT(reporter, helper.stats()->fNumHWCreations == 0);
|
|
|
|
REPORTER_ASSERT(reporter, helper.stats()->fNumSWCreations == 0);
|
|
|
|
|
|
|
|
dContext->flush();
|
|
|
|
dContext->submit(true);
|
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(helper.liveCanvas(), kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 0, /*misses*/ 1, /*refs*/ 0, kNoID));
|
2020-09-25 16:47:10 +00:00
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, helper.numCacheEntries() == 1);
|
|
|
|
REPORTER_ASSERT(reporter, helper.stats()->fNumLazyCreations == 1);
|
|
|
|
REPORTER_ASSERT(reporter, helper.stats()->fNumHWCreations == 0);
|
|
|
|
REPORTER_ASSERT(reporter, helper.stats()->fNumSWCreations == 0);
|
|
|
|
}
|
|
|
|
|
2020-10-06 18:52:11 +00:00
|
|
|
// Case 5: ensure that expanding the map works (esp. wrt custom data)
|
2020-09-18 16:28:59 +00:00
|
|
|
DEF_GPUTEST_FOR_RENDERING_CONTEXTS(GrThreadSafeViewCache5, reporter, ctxInfo) {
|
|
|
|
TestHelper helper(ctxInfo.directContext());
|
|
|
|
|
|
|
|
auto threadSafeViewCache = helper.threadSafeViewCache();
|
|
|
|
|
|
|
|
int size = 16;
|
2020-10-06 18:52:11 +00:00
|
|
|
helper.accessCachedView(helper.ddlCanvas1(), size, /*id*/ size);
|
2020-09-18 16:28:59 +00:00
|
|
|
|
2020-09-22 18:24:43 +00:00
|
|
|
size_t initialSize = threadSafeViewCache->approxBytesUsedForHash();
|
2020-09-18 16:28:59 +00:00
|
|
|
|
2020-09-22 18:24:43 +00:00
|
|
|
while (initialSize == threadSafeViewCache->approxBytesUsedForHash()) {
|
2020-09-18 16:28:59 +00:00
|
|
|
size *= 2;
|
2020-10-06 18:52:11 +00:00
|
|
|
helper.accessCachedView(helper.ddlCanvas1(), size, /*id*/ size);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 16; i <= size; i *= 2) {
|
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(helper.ddlCanvas1(),
|
|
|
|
/*wh*/ i,
|
|
|
|
/*hits*/ 0,
|
|
|
|
/*misses*/ threadSafeViewCache->numEntries(),
|
|
|
|
/*refs*/ 1,
|
|
|
|
/*id*/ i));
|
2020-09-18 16:28:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-25 19:25:46 +00:00
|
|
|
// Case 6: Check on dropping refs. In particular, that the cache has its own ref to keep
|
|
|
|
// the backing resource alive and locked.
|
2020-09-18 18:07:43 +00:00
|
|
|
DEF_GPUTEST_FOR_RENDERING_CONTEXTS(GrThreadSafeViewCache6, reporter, ctxInfo) {
|
|
|
|
TestHelper helper(ctxInfo.directContext());
|
|
|
|
|
|
|
|
helper.accessCachedView(helper.ddlCanvas1(), kImageWH);
|
|
|
|
sk_sp<SkDeferredDisplayList> ddl1 = helper.snap1();
|
2020-09-22 16:18:16 +00:00
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(nullptr, kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 0, /*misses*/ 1, /*refs*/ 1, kNoID));
|
2020-09-18 18:07:43 +00:00
|
|
|
|
|
|
|
helper.accessCachedView(helper.ddlCanvas2(), kImageWH);
|
|
|
|
sk_sp<SkDeferredDisplayList> ddl2 = helper.snap2();
|
2020-09-22 16:18:16 +00:00
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(nullptr, kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 1, /*misses*/ 1, /*refs*/ 2, kNoID));
|
2020-09-18 18:07:43 +00:00
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, helper.numCacheEntries() == 1);
|
|
|
|
|
|
|
|
ddl1 = nullptr;
|
2020-09-22 16:18:16 +00:00
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(nullptr, kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 1, /*misses*/ 1, /*refs*/ 1, kNoID));
|
2020-09-18 18:07:43 +00:00
|
|
|
|
|
|
|
ddl2 = nullptr;
|
2020-09-22 16:18:16 +00:00
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(nullptr, kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 1, /*misses*/ 1, /*refs*/ 0, kNoID));
|
2020-09-18 18:07:43 +00:00
|
|
|
|
|
|
|
// The cache still has its ref
|
|
|
|
REPORTER_ASSERT(reporter, helper.numCacheEntries() == 1);
|
|
|
|
|
2020-09-22 16:18:16 +00:00
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(nullptr, kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 1, /*misses*/ 1, /*refs*/ 0, kNoID));
|
2020-09-18 18:07:43 +00:00
|
|
|
}
|
2020-09-18 20:16:33 +00:00
|
|
|
|
2020-09-25 19:25:46 +00:00
|
|
|
// Case 7: Check that invoking dropAllRefs and dropUniqueRefs directly works as expected; i.e.,
|
|
|
|
// dropAllRefs removes everything while dropUniqueRefs is more measured.
|
2020-09-18 20:16:33 +00:00
|
|
|
DEF_GPUTEST_FOR_RENDERING_CONTEXTS(GrThreadSafeViewCache7, reporter, ctxInfo) {
|
|
|
|
TestHelper helper(ctxInfo.directContext());
|
|
|
|
|
|
|
|
helper.accessCachedView(helper.ddlCanvas1(), kImageWH);
|
|
|
|
sk_sp<SkDeferredDisplayList> ddl1 = helper.snap1();
|
2020-09-22 16:18:16 +00:00
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(nullptr, kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 0, /*misses*/ 1, /*refs*/ 1, kNoID));
|
2020-09-18 20:16:33 +00:00
|
|
|
|
|
|
|
helper.accessCachedView(helper.ddlCanvas2(), 2*kImageWH);
|
|
|
|
sk_sp<SkDeferredDisplayList> ddl2 = helper.snap2();
|
2020-09-22 16:18:16 +00:00
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(nullptr, 2*kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 0, /*misses*/ 2, /*refs*/ 1, kNoID));
|
2020-09-18 20:16:33 +00:00
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, helper.numCacheEntries() == 2);
|
|
|
|
|
2020-09-22 19:20:01 +00:00
|
|
|
helper.threadSafeViewCache()->dropUniqueRefs(nullptr);
|
2020-09-18 20:16:33 +00:00
|
|
|
REPORTER_ASSERT(reporter, helper.numCacheEntries() == 2);
|
|
|
|
|
|
|
|
ddl1 = nullptr;
|
|
|
|
|
2020-09-22 19:20:01 +00:00
|
|
|
helper.threadSafeViewCache()->dropUniqueRefs(nullptr);
|
2020-09-18 20:16:33 +00:00
|
|
|
REPORTER_ASSERT(reporter, helper.numCacheEntries() == 1);
|
2020-09-22 16:18:16 +00:00
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(nullptr, 2*kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 0, /*misses*/ 2, /*refs*/ 1, kNoID));
|
2020-09-18 20:16:33 +00:00
|
|
|
|
|
|
|
helper.threadSafeViewCache()->dropAllRefs();
|
|
|
|
REPORTER_ASSERT(reporter, helper.numCacheEntries() == 0);
|
|
|
|
|
|
|
|
ddl2 = nullptr;
|
|
|
|
}
|
2020-09-22 16:18:16 +00:00
|
|
|
|
|
|
|
// Case 8: This checks that GrContext::abandonContext works as expected wrt the thread
|
|
|
|
// safe cache. This simulates the case where we have one DDL that has finished
|
|
|
|
// recording but one still recording when the abandonContext fires.
|
|
|
|
DEF_GPUTEST_FOR_RENDERING_CONTEXTS(GrThreadSafeViewCache8, reporter, ctxInfo) {
|
|
|
|
TestHelper helper(ctxInfo.directContext());
|
|
|
|
|
|
|
|
helper.accessCachedView(helper.liveCanvas(), kImageWH);
|
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(helper.liveCanvas(), kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 0, /*misses*/ 1, /*refs*/ 1, kNoID));
|
2020-09-22 16:18:16 +00:00
|
|
|
|
|
|
|
helper.accessCachedView(helper.ddlCanvas1(), kImageWH);
|
|
|
|
sk_sp<SkDeferredDisplayList> ddl1 = helper.snap1();
|
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(helper.ddlCanvas1(), kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 1, /*misses*/ 1, /*refs*/ 2, kNoID));
|
2020-09-22 16:18:16 +00:00
|
|
|
|
|
|
|
helper.accessCachedView(helper.ddlCanvas2(), kImageWH);
|
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(helper.ddlCanvas2(), kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 2, /*misses*/ 1, /*refs*/ 3, kNoID));
|
2020-09-22 16:18:16 +00:00
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, helper.numCacheEntries() == 1);
|
2020-09-25 16:47:10 +00:00
|
|
|
REPORTER_ASSERT(reporter, helper.stats()->fNumLazyCreations == 1);
|
2020-09-22 16:18:16 +00:00
|
|
|
REPORTER_ASSERT(reporter, helper.stats()->fNumHWCreations == 1);
|
|
|
|
REPORTER_ASSERT(reporter, helper.stats()->fNumSWCreations == 0);
|
|
|
|
|
|
|
|
ctxInfo.directContext()->abandonContext(); // This should exercise dropAllRefs
|
|
|
|
|
|
|
|
sk_sp<SkDeferredDisplayList> ddl2 = helper.snap2();
|
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, helper.numCacheEntries() == 0);
|
|
|
|
|
|
|
|
ddl1 = nullptr;
|
|
|
|
ddl2 = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Case 9: This checks that GrContext::releaseResourcesAndAbandonContext works as expected wrt
|
|
|
|
// the thread safe cache. This simulates the case where we have one DDL that has finished
|
|
|
|
// recording but one still recording when the releaseResourcesAndAbandonContext fires.
|
|
|
|
DEF_GPUTEST_FOR_RENDERING_CONTEXTS(GrThreadSafeViewCache9, reporter, ctxInfo) {
|
|
|
|
TestHelper helper(ctxInfo.directContext());
|
|
|
|
|
|
|
|
helper.accessCachedView(helper.liveCanvas(), kImageWH);
|
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(helper.liveCanvas(), kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 0, /*misses*/ 1, /*refs*/ 1, kNoID));
|
2020-09-22 16:18:16 +00:00
|
|
|
|
|
|
|
helper.accessCachedView(helper.ddlCanvas1(), kImageWH);
|
|
|
|
sk_sp<SkDeferredDisplayList> ddl1 = helper.snap1();
|
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(helper.ddlCanvas1(), kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 1, /*misses*/ 1, /*refs*/ 2, kNoID));
|
2020-09-22 16:18:16 +00:00
|
|
|
|
|
|
|
helper.accessCachedView(helper.ddlCanvas2(), kImageWH);
|
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(helper.ddlCanvas2(), kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 2, /*misses*/ 1, /*refs*/ 3, kNoID));
|
2020-09-22 16:18:16 +00:00
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, helper.numCacheEntries() == 1);
|
2020-09-25 16:47:10 +00:00
|
|
|
REPORTER_ASSERT(reporter, helper.stats()->fNumLazyCreations == 1);
|
2020-09-22 16:18:16 +00:00
|
|
|
REPORTER_ASSERT(reporter, helper.stats()->fNumHWCreations == 1);
|
|
|
|
REPORTER_ASSERT(reporter, helper.stats()->fNumSWCreations == 0);
|
|
|
|
|
|
|
|
ctxInfo.directContext()->releaseResourcesAndAbandonContext(); // This should hit dropAllRefs
|
|
|
|
|
|
|
|
sk_sp<SkDeferredDisplayList> ddl2 = helper.snap2();
|
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, helper.numCacheEntries() == 0);
|
|
|
|
|
|
|
|
ddl1 = nullptr;
|
|
|
|
ddl2 = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Case 10: This checks that the GrContext::purgeUnlockedResources(size_t) variant works as
|
|
|
|
// expected wrt the thread safe cache. It, in particular, tests out the MRU behavior
|
|
|
|
// of the shared cache.
|
|
|
|
DEF_GPUTEST_FOR_RENDERING_CONTEXTS(GrThreadSafeViewCache10, reporter, ctxInfo) {
|
|
|
|
auto dContext = ctxInfo.directContext();
|
|
|
|
|
|
|
|
if (GrBackendApi::kOpenGL != dContext->backend()) {
|
|
|
|
// The lower-level backends have too much going on for the following simple purging
|
|
|
|
// test to work
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
TestHelper helper(dContext);
|
|
|
|
|
|
|
|
helper.accessCachedView(helper.liveCanvas(), kImageWH);
|
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(helper.liveCanvas(), kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 0, /*misses*/ 1, /*refs*/ 1, kNoID));
|
2020-09-22 16:18:16 +00:00
|
|
|
|
|
|
|
helper.accessCachedView(helper.ddlCanvas1(), kImageWH);
|
|
|
|
sk_sp<SkDeferredDisplayList> ddl1 = helper.snap1();
|
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(helper.ddlCanvas1(), kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 1, /*misses*/ 1, /*refs*/ 2, kNoID));
|
2020-09-22 16:18:16 +00:00
|
|
|
|
|
|
|
helper.accessCachedView(helper.liveCanvas(), 2*kImageWH);
|
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(helper.liveCanvas(), 2*kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 1, /*misses*/ 2, /*refs*/ 1, kNoID));
|
2020-09-22 16:18:16 +00:00
|
|
|
|
|
|
|
helper.accessCachedView(helper.ddlCanvas2(), 2*kImageWH);
|
|
|
|
sk_sp<SkDeferredDisplayList> ddl2 = helper.snap2();
|
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(helper.ddlCanvas2(), 2*kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 2, /*misses*/ 2, /*refs*/ 2, kNoID));
|
2020-09-22 16:18:16 +00:00
|
|
|
|
|
|
|
dContext->flush();
|
|
|
|
dContext->submit(true);
|
|
|
|
|
|
|
|
// This should clear out everything but the textures locked in the thread-safe cache
|
|
|
|
dContext->purgeUnlockedResources(false);
|
|
|
|
|
|
|
|
ddl1 = nullptr;
|
|
|
|
ddl2 = nullptr;
|
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, helper.numCacheEntries() == 2);
|
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(helper.liveCanvas(), kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 2, /*misses*/ 2, /*refs*/ 0, kNoID));
|
2020-09-22 16:18:16 +00:00
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(helper.liveCanvas(), 2*kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 2, /*misses*/ 2, /*refs*/ 0, kNoID));
|
2020-09-22 16:18:16 +00:00
|
|
|
|
|
|
|
// Regardless of which image is MRU, this should force the other out
|
|
|
|
size_t desiredBytes = helper.gpuSize(2*kImageWH) + helper.gpuSize(kImageWH)/2;
|
|
|
|
|
|
|
|
auto cache = dContext->priv().getResourceCache();
|
|
|
|
size_t currentBytes = cache->getResourceBytes();
|
|
|
|
|
|
|
|
SkASSERT(currentBytes >= desiredBytes);
|
|
|
|
size_t amountToPurge = currentBytes - desiredBytes;
|
|
|
|
|
|
|
|
// The 2*kImageWH texture should be MRU.
|
|
|
|
dContext->purgeUnlockedResources(amountToPurge, true);
|
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, helper.numCacheEntries() == 1);
|
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(helper.liveCanvas(), 2*kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 2, /*misses*/ 2, /*refs*/ 0, kNoID));
|
2020-09-22 16:18:16 +00:00
|
|
|
}
|
2020-09-22 19:20:01 +00:00
|
|
|
|
|
|
|
// Case 11: This checks that scratch-only variant of GrContext::purgeUnlockedResources works as
|
2020-09-25 19:25:46 +00:00
|
|
|
// expected wrt the thread safe cache. In particular, that when 'scratchResourcesOnly'
|
|
|
|
// is true, the call has no effect on the cache.
|
2020-09-22 19:20:01 +00:00
|
|
|
DEF_GPUTEST_FOR_RENDERING_CONTEXTS(GrThreadSafeViewCache11, reporter, ctxInfo) {
|
|
|
|
auto dContext = ctxInfo.directContext();
|
|
|
|
|
|
|
|
TestHelper helper(dContext);
|
|
|
|
|
|
|
|
helper.accessCachedView(helper.liveCanvas(), kImageWH);
|
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(helper.liveCanvas(), kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 0, /*misses*/ 1, /*refs*/ 1, kNoID));
|
2020-09-22 19:20:01 +00:00
|
|
|
|
|
|
|
helper.accessCachedView(helper.liveCanvas(), 2*kImageWH);
|
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(helper.liveCanvas(), 2*kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 0, /*misses*/ 2, /*refs*/ 1, kNoID));
|
2020-09-22 19:20:01 +00:00
|
|
|
|
|
|
|
dContext->flush();
|
|
|
|
dContext->submit(true);
|
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, helper.numCacheEntries() == 2);
|
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(helper.liveCanvas(), kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 0, /*misses*/ 2, /*refs*/ 0, kNoID));
|
2020-09-22 19:20:01 +00:00
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(helper.liveCanvas(), 2*kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 0, /*misses*/ 2, /*refs*/ 0, kNoID));
|
2020-09-22 19:20:01 +00:00
|
|
|
|
|
|
|
// This shouldn't remove anything from the cache
|
|
|
|
dContext->purgeUnlockedResources(/* scratchResourcesOnly */ true);
|
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, helper.numCacheEntries() == 2);
|
|
|
|
|
|
|
|
dContext->purgeUnlockedResources(/* scratchResourcesOnly */ false);
|
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, helper.numCacheEntries() == 0);
|
|
|
|
}
|
|
|
|
|
2020-09-25 19:25:46 +00:00
|
|
|
// Case 12: Test out purges caused by resetting the cache budget to 0. Note that, due to
|
|
|
|
// the how the cache operates (i.e., not directly driven by ref/unrefs) there
|
|
|
|
// needs to be an explicit kick to purge the cache.
|
2020-09-22 19:20:01 +00:00
|
|
|
DEF_GPUTEST_FOR_RENDERING_CONTEXTS(GrThreadSafeViewCache12, reporter, ctxInfo) {
|
|
|
|
auto dContext = ctxInfo.directContext();
|
|
|
|
|
|
|
|
TestHelper helper(dContext);
|
|
|
|
|
|
|
|
helper.accessCachedView(helper.liveCanvas(), kImageWH);
|
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(helper.liveCanvas(), kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 0, /*misses*/ 1, /*refs*/ 1, kNoID));
|
2020-09-22 19:20:01 +00:00
|
|
|
helper.accessCachedView(helper.ddlCanvas1(), kImageWH);
|
|
|
|
sk_sp<SkDeferredDisplayList> ddl1 = helper.snap1();
|
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(helper.ddlCanvas1(), kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 1, /*misses*/ 1, /*refs*/ 2, kNoID));
|
2020-09-22 19:20:01 +00:00
|
|
|
|
|
|
|
helper.accessCachedView(helper.liveCanvas(), 2*kImageWH);
|
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(helper.liveCanvas(), 2*kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 1, /*misses*/ 2, /*refs*/ 1, kNoID));
|
2020-09-22 19:20:01 +00:00
|
|
|
|
|
|
|
dContext->flush();
|
|
|
|
dContext->submit(true);
|
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, helper.numCacheEntries() == 2);
|
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(helper.liveCanvas(), kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 1, /*misses*/ 2, /*refs*/ 1, kNoID));
|
2020-09-22 19:20:01 +00:00
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(helper.liveCanvas(), 2*kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 1, /*misses*/ 2, /*refs*/ 0, kNoID));
|
2020-09-22 19:20:01 +00:00
|
|
|
|
|
|
|
dContext->setResourceCacheLimit(0);
|
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, helper.numCacheEntries() == 1);
|
|
|
|
|
|
|
|
ddl1 = nullptr;
|
|
|
|
|
2020-09-25 19:25:46 +00:00
|
|
|
// Explicitly kick off the purge - it won't happen automatically on unref
|
2020-09-22 19:20:01 +00:00
|
|
|
dContext->performDeferredCleanup(std::chrono::milliseconds(0));
|
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, helper.numCacheEntries() == 0);
|
|
|
|
}
|
2020-09-22 21:34:51 +00:00
|
|
|
|
|
|
|
// Case 13: Test out the 'msNotUsed' parameter to GrContext::performDeferredCleanup.
|
|
|
|
DEF_GPUTEST_FOR_RENDERING_CONTEXTS(GrThreadSafeViewCache13, reporter, ctxInfo) {
|
|
|
|
auto dContext = ctxInfo.directContext();
|
|
|
|
|
|
|
|
TestHelper helper(dContext);
|
|
|
|
|
|
|
|
helper.accessCachedView(helper.ddlCanvas1(), kImageWH);
|
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(helper.ddlCanvas1(), kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 0, /*misses*/ 1, /*refs*/ 1, kNoID));
|
2020-09-22 21:34:51 +00:00
|
|
|
sk_sp<SkDeferredDisplayList> ddl1 = helper.snap1();
|
|
|
|
|
|
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(5));
|
|
|
|
auto firstTime = GrStdSteadyClock::now();
|
|
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(5));
|
|
|
|
|
|
|
|
helper.accessCachedView(helper.ddlCanvas2(), 2*kImageWH);
|
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(helper.ddlCanvas2(), 2*kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 0, /*misses*/ 2, /*refs*/ 1, kNoID));
|
2020-09-22 21:34:51 +00:00
|
|
|
sk_sp<SkDeferredDisplayList> ddl2 = helper.snap2();
|
|
|
|
|
|
|
|
ddl1 = nullptr;
|
|
|
|
ddl2 = nullptr;
|
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, helper.numCacheEntries() == 2);
|
|
|
|
|
|
|
|
auto secondTime = GrStdSteadyClock::now();
|
|
|
|
|
|
|
|
auto msecs = std::chrono::duration_cast<std::chrono::milliseconds>(secondTime - firstTime);
|
|
|
|
dContext->performDeferredCleanup(msecs);
|
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, helper.numCacheEntries() == 1);
|
|
|
|
REPORTER_ASSERT(reporter, helper.checkView(helper.liveCanvas(), 2*kImageWH,
|
2020-10-06 18:52:11 +00:00
|
|
|
/*hits*/ 0, /*misses*/ 2, /*refs*/ 0, kNoID));
|
2020-09-22 21:34:51 +00:00
|
|
|
}
|