blob: 4b7f969e765630bcf2b084cdb504d08035151795 [file] [log] [blame]
Brian Osmanf6f7cf62017-09-25 16:49:55 -04001/*
2 * Copyright 2017 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "Test.h"
9
Brian Osmanf6f7cf62017-09-25 16:49:55 -040010#include "GrClip.h"
11#include "GrContext.h"
12#include "GrContextPriv.h"
13#include "GrResourceCache.h"
Brian Salomon653f42f2018-07-10 10:07:31 -040014#include "GrShape.h"
Brian Osmane9242ca2017-09-26 14:05:19 -040015#include "GrSoftwarePathRenderer.h"
Brian Salomon653f42f2018-07-10 10:07:31 -040016#include "GrStyle.h"
17#include "SkPath.h"
Brian Osmanf6f7cf62017-09-25 16:49:55 -040018#include "effects/GrPorterDuffXferProcessor.h"
19#include "ops/GrTessellatingPathRenderer.h"
20
21static SkPath create_concave_path() {
22 SkPath path;
23 path.moveTo(100, 0);
24 path.lineTo(200, 200);
25 path.lineTo(100, 150);
26 path.lineTo(0, 200);
27 path.close();
28 return path;
29}
30
31static void draw_path(GrContext* ctx,
32 GrRenderTargetContext* renderTargetContext,
33 const SkPath& path,
34 GrPathRenderer* pr,
Brian Osmane9242ca2017-09-26 14:05:19 -040035 GrAAType aaType,
36 const GrStyle& style) {
Brian Osmanf6f7cf62017-09-25 16:49:55 -040037 GrPaint paint;
38 paint.setXPFactory(GrPorterDuffXPFactory::Get(SkBlendMode::kSrc));
39
40 GrNoClip noClip;
41 SkIRect clipConservativeBounds = SkIRect::MakeWH(renderTargetContext->width(),
42 renderTargetContext->height());
43 GrShape shape(path, style);
44 if (shape.style().applies()) {
45 shape = shape.applyStyle(GrStyle::Apply::kPathEffectAndStrokeRec, 1.0f);
46 }
47 SkMatrix matrix = SkMatrix::I();
48 GrPathRenderer::DrawPathArgs args{ctx,
49 std::move(paint),
50 &GrUserStencilSettings::kUnused,
51 renderTargetContext,
52 &noClip,
53 &clipConservativeBounds,
54 &matrix,
55 &shape,
56 aaType,
57 false};
58 pr->drawPath(args);
59}
60
Brian Osmane9242ca2017-09-26 14:05:19 -040061static bool cache_non_scratch_resources_equals(GrResourceCache* cache, int expected) {
62#if GR_CACHE_STATS
63 GrResourceCache::Stats stats;
64 cache->getStats(&stats);
65 return (stats.fTotal - stats.fScratch) == expected;
66#else
67 return true;
68#endif
69}
70
Brian Osmanf6f7cf62017-09-25 16:49:55 -040071static void test_path(skiatest::Reporter* reporter,
72 std::function<SkPath(void)> createPath,
Brian Osmane9242ca2017-09-26 14:05:19 -040073 std::function<GrPathRenderer*(GrContext*)> createPathRenderer,
Brian Osman5fcd3912017-10-04 14:45:04 -040074 int expected,
Brian Osmanf6f7cf62017-09-25 16:49:55 -040075 GrAAType aaType = GrAAType::kNone,
76 GrStyle style = GrStyle(SkStrokeRec::kFill_InitStyle)) {
77 sk_sp<GrContext> ctx = GrContext::MakeMock(nullptr);
Brian Osman5fcd3912017-10-04 14:45:04 -040078 // The cache needs to be big enough that nothing gets flushed, or our expectations can be wrong
Brian Salomon57b04302018-01-30 15:43:49 -050079 ctx->setResourceCacheLimits(100, 8000000);
Robert Phillips6be756b2018-01-16 15:07:54 -050080 GrResourceCache* cache = ctx->contextPriv().getResourceCache();
Brian Osmanf6f7cf62017-09-25 16:49:55 -040081
Greg Daniel4065d452018-11-16 15:43:41 -050082 const GrBackendFormat format =
83 ctx->contextPriv().caps()->getBackendFormatFromColorType(kRGBA_8888_SkColorType);
84
Robert Phillips0c4b7b12018-03-06 08:20:37 -050085 sk_sp<GrRenderTargetContext> rtc(ctx->contextPriv().makeDeferredRenderTargetContext(
Greg Daniel4065d452018-11-16 15:43:41 -050086 format, SkBackingFit::kApprox, 800, 800, kRGBA_8888_GrPixelConfig, nullptr, 1,
87 GrMipMapped::kNo, kTopLeft_GrSurfaceOrigin));
Brian Osmanf6f7cf62017-09-25 16:49:55 -040088 if (!rtc) {
89 return;
90 }
91
Brian Osmane9242ca2017-09-26 14:05:19 -040092 sk_sp<GrPathRenderer> pathRenderer(createPathRenderer(ctx.get()));
Brian Osmanf6f7cf62017-09-25 16:49:55 -040093 SkPath path = createPath();
94
95 // Initially, cache only has the render target context
Brian Osmane9242ca2017-09-26 14:05:19 -040096 REPORTER_ASSERT(reporter, cache_non_scratch_resources_equals(cache, 0));
Brian Osmanf6f7cf62017-09-25 16:49:55 -040097
98 // Draw the path, check that new resource count matches expectations
Brian Osmane9242ca2017-09-26 14:05:19 -040099 draw_path(ctx.get(), rtc.get(), path, pathRenderer.get(), aaType, style);
Brian Osmanf6f7cf62017-09-25 16:49:55 -0400100 ctx->flush();
Brian Osman5fcd3912017-10-04 14:45:04 -0400101 REPORTER_ASSERT(reporter, cache_non_scratch_resources_equals(cache, expected));
Brian Osmanf6f7cf62017-09-25 16:49:55 -0400102
103 // Nothing should be purgeable yet
104 cache->purgeAsNeeded();
Brian Osman5fcd3912017-10-04 14:45:04 -0400105 REPORTER_ASSERT(reporter, cache_non_scratch_resources_equals(cache, expected));
Brian Osmanf6f7cf62017-09-25 16:49:55 -0400106
Brian Osman5fcd3912017-10-04 14:45:04 -0400107 // Reset the path to change the GenID, which should invalidate one resource in the cache.
108 // Some path renderers may leave other unique-keyed resources in the cache, though.
Brian Osmanf6f7cf62017-09-25 16:49:55 -0400109 path.reset();
110 cache->purgeAsNeeded();
Brian Osman5fcd3912017-10-04 14:45:04 -0400111 REPORTER_ASSERT(reporter, cache_non_scratch_resources_equals(cache, expected - 1));
Brian Osmanf6f7cf62017-09-25 16:49:55 -0400112}
113
114// Test that deleting the original path invalidates the VBs cached by the tessellating path renderer
Brian Salomondcfca432017-11-15 15:48:03 -0500115DEF_GPUTEST(TessellatingPathRendererCacheTest, reporter, /* options */) {
Brian Osmane9242ca2017-09-26 14:05:19 -0400116 auto createPR = [](GrContext*) {
117 return new GrTessellatingPathRenderer();
118 };
Brian Osmanf6f7cf62017-09-25 16:49:55 -0400119
Brian Osman5fcd3912017-10-04 14:45:04 -0400120 // Tessellating path renderer creates a single vertex buffer for non-AA paths. No other
121 // resources should be created.
122 const int kExpectedResources = 1;
123
124 test_path(reporter, create_concave_path, createPR, kExpectedResources);
Brian Osmanf6f7cf62017-09-25 16:49:55 -0400125
Brian Osmane9242ca2017-09-26 14:05:19 -0400126 // Test with a style that alters the path geometry. This needs to attach the invalidation logic
127 // to the original path, not the modified path produced by the style.
Brian Osmanf6f7cf62017-09-25 16:49:55 -0400128 SkPaint paint;
129 paint.setStyle(SkPaint::kStroke_Style);
130 paint.setStrokeWidth(1);
131 GrStyle style(paint);
Brian Osman5fcd3912017-10-04 14:45:04 -0400132 test_path(reporter, create_concave_path, createPR, kExpectedResources, GrAAType::kNone, style);
Brian Osmane9242ca2017-09-26 14:05:19 -0400133}
134
135// Test that deleting the original path invalidates the textures cached by the SW path renderer
Brian Salomondcfca432017-11-15 15:48:03 -0500136DEF_GPUTEST(SoftwarePathRendererCacheTest, reporter, /* options */) {
Brian Osmane9242ca2017-09-26 14:05:19 -0400137 auto createPR = [](GrContext* ctx) {
Robert Phillips1afd4cd2018-01-08 13:40:32 -0500138 return new GrSoftwarePathRenderer(ctx->contextPriv().proxyProvider(), true);
Brian Osmane9242ca2017-09-26 14:05:19 -0400139 };
140
Michael Ludwig72ab3462018-12-10 12:43:36 -0500141 // Software path renderer creates a mask texture and renders with a non-AA rect, but the flush
142 // only contains a single quad so GrFillRectOp doesn't need to use the shared index buffer.
143 const int kExpectedResources = 1;
Brian Osman5fcd3912017-10-04 14:45:04 -0400144
145 test_path(reporter, create_concave_path, createPR, kExpectedResources, GrAAType::kCoverage);
Brian Osmane9242ca2017-09-26 14:05:19 -0400146
147 // Test with a style that alters the path geometry. This needs to attach the invalidation logic
148 // to the original path, not the modified path produced by the style.
149 SkPaint paint;
150 paint.setStyle(SkPaint::kStroke_Style);
151 paint.setStrokeWidth(1);
152 GrStyle style(paint);
Brian Osman5fcd3912017-10-04 14:45:04 -0400153 test_path(reporter, create_concave_path, createPR, kExpectedResources, GrAAType::kCoverage,
154 style);
Brian Osmanf6f7cf62017-09-25 16:49:55 -0400155}