diff options
author | Robert Phillips <robertphillips@google.com> | 2018-03-07 11:54:37 -0500 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2018-03-07 19:25:10 +0000 |
commit | d2e9f767bbb1a7664e9ee83d0755d7e4327cb7b2 (patch) | |
tree | 48e23613d7bb6f3c57ec16bf447390a704be5598 /tests | |
parent | c7fbda95404a9422d0dd762d35383d5a61e89440 (diff) |
Revise Text & Small Path Atlas so instantiation failure is handled at flush time
This paves the way to having the AtlasTextOps not need the RestrictedAtlasManager at op creation time.
Change-Id: I1028faba730d50d3d3349a4c0809465d036ed611
Reviewed-on: https://skia-review.googlesource.com/111807
Reviewed-by: Jim Van Verth <jvanverth@google.com>
Commit-Queue: Robert Phillips <robertphillips@google.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/DrawOpAtlasTest.cpp | 94 |
1 files changed, 87 insertions, 7 deletions
diff --git a/tests/DrawOpAtlasTest.cpp b/tests/DrawOpAtlasTest.cpp index 7e35a07726..a579063f2b 100644 --- a/tests/DrawOpAtlasTest.cpp +++ b/tests/DrawOpAtlasTest.cpp @@ -28,6 +28,20 @@ int GrDrawOpAtlas::numAllocated_TestingOnly() const { return count; } +void GrAtlasManager::setMaxPages_TestingOnly(uint32_t numPages) { + for (int i = 0; i < kMaskFormatCount; i++) { + if (fAtlases[i]) { + fAtlases[i]->setMaxPages_TestingOnly(numPages); + } + } +} + +void GrDrawOpAtlas::setMaxPages_TestingOnly(uint32_t maxPages) { + SkASSERT(!fNumActivePages); + + fMaxPages = maxPages; +} + void EvictionFunc(GrDrawOpAtlas::AtlasID atlasID, void*) { SkASSERT(0); // The unit test shouldn't exercise this code path } @@ -43,9 +57,8 @@ class TestingUploadTarget : public GrDeferredUploadTarget { public: TestingUploadTarget() { } - const GrTokenTracker* tokenTracker() final { - return &fTokenTracker; - } + const GrTokenTracker* tokenTracker() final { return &fTokenTracker; } + GrTokenTracker* writeableTokenTracker() { return &fTokenTracker; } GrDeferredUploadToken addInlineUpload(GrDeferredTextureUploadFn&&) final { SkASSERT(0); // this test shouldn't invoke this code path @@ -77,13 +90,16 @@ static bool fill_plot(GrDrawOpAtlas* atlas, data.eraseARGB(alpha, 0, 0, 0); SkIPoint16 loc; - bool result = atlas->addToAtlas(resourceProvider, atlasID, target, kPlotSize, kPlotSize, - data.getAddr(0, 0), &loc); - return result; + GrDrawOpAtlas::ErrorCode code; + code = atlas->addToAtlas(resourceProvider, atlasID, target, kPlotSize, kPlotSize, + data.getAddr(0, 0), &loc); + return GrDrawOpAtlas::ErrorCode::kSucceeded == code; } -DEF_GPUTEST_FOR_RENDERING_CONTEXTS(DrawOpAtlas, reporter, ctxInfo) { +// This is a basic DrawOpAtlas test. It simply verifies that multitexture atlases correctly +// add and remove pages. Note that this is simulating flush-time behavior. +DEF_GPUTEST_FOR_RENDERING_CONTEXTS(BasicDrawOpAtlas, reporter, ctxInfo) { auto context = ctxInfo.grContext(); auto proxyProvider = context->contextPriv().proxyProvider(); auto resourceProvider = context->contextPriv().resourceProvider(); @@ -129,4 +145,68 @@ DEF_GPUTEST_FOR_RENDERING_CONTEXTS(DrawOpAtlas, reporter, ctxInfo) { check(reporter, atlas.get(), 1, 4, 1); } +#include "GrTest.h" + +#include "GrDrawingManager.h" +#include "GrOpFlushState.h" +#include "GrProxyProvider.h" + +#include "effects/GrConstColorProcessor.h" +#include "ops/GrAtlasTextOp.h" +#include "text/GrAtlasTextContext.h" + +// This test verifies that the GrAtlasTextOp::onPrepare method correctly handles a failure +// when allocating an atlas page. +DEF_GPUTEST_FOR_RENDERING_CONTEXTS(GrAtlasTextOpPreparation, reporter, ctxInfo) { + + auto context = ctxInfo.grContext(); + + auto gpu = context->contextPriv().getGpu(); + auto resourceProvider = context->contextPriv().resourceProvider(); + auto drawingManager = context->contextPriv().drawingManager(); + auto textContext = drawingManager->getAtlasTextContext(); + + auto rtc = context->contextPriv().makeDeferredRenderTargetContext(SkBackingFit::kApprox, + 32, 32, + kRGBA_8888_GrPixelConfig, + nullptr); + + SkPaint paint; + paint.setColor(SK_ColorRED); + paint.setLCDRenderText(false); + paint.setAntiAlias(false); + paint.setSubpixelText(false); + GrTextUtils::Paint utilsPaint(&paint, &rtc->colorSpaceInfo()); + + const char* text = "a"; + + std::unique_ptr<GrDrawOp> op = textContext->createOp_TestingOnly(context, textContext, + rtc.get(), paint, + SkMatrix::I(), text, + 16, 16); + op->finalize(*context->caps(), nullptr, GrPixelConfigIsClamped::kNo); + + TestingUploadTarget uploadTarget; + + GrOpFlushState flushState(gpu, resourceProvider, uploadTarget.writeableTokenTracker()); + GrOpFlushState::OpArgs opArgs = { + op.get(), + rtc->asRenderTargetProxy(), + nullptr, + GrXferProcessor::DstProxy(nullptr, SkIPoint::Make(0, 0)) + }; + + // Cripple the atlas manager so it can't allocate any pages. This will force a failure + // in the preparation of the text op + auto atlasManager = context->contextPriv().getFullAtlasManager(); + unsigned int numProxies; + atlasManager->getProxies(kA8_GrMaskFormat, &numProxies); + atlasManager->setMaxPages_TestingOnly(0); + + flushState.setOpArgs(&opArgs); + op->prepare(&flushState); + flushState.setOpArgs(nullptr); +} + + #endif |