blob: d21289055b79c92a7165b503048387b5b30e30ce [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
10#include "SkPath.h"
11
12#if SK_SUPPORT_GPU
13#include "GrClip.h"
14#include "GrContext.h"
15#include "GrContextPriv.h"
16#include "GrResourceCache.h"
Brian Osmane9242ca2017-09-26 14:05:19 -040017#include "GrSoftwarePathRenderer.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 Osmanf6f7cf62017-09-25 16:49:55 -040074 GrAAType aaType = GrAAType::kNone,
75 GrStyle style = GrStyle(SkStrokeRec::kFill_InitStyle)) {
76 sk_sp<GrContext> ctx = GrContext::MakeMock(nullptr);
Brian Osmane9242ca2017-09-26 14:05:19 -040077 ctx->setResourceCacheLimits(100, 100000);
Brian Osmanf6f7cf62017-09-25 16:49:55 -040078 GrResourceCache* cache = ctx->getResourceCache();
79
80 sk_sp<GrRenderTargetContext> rtc(ctx->makeDeferredRenderTargetContext(
81 SkBackingFit::kApprox, 800, 800, kRGBA_8888_GrPixelConfig, nullptr, 0,
82 kTopLeft_GrSurfaceOrigin));
83 if (!rtc) {
84 return;
85 }
86
Brian Osmane9242ca2017-09-26 14:05:19 -040087 sk_sp<GrPathRenderer> pathRenderer(createPathRenderer(ctx.get()));
Brian Osmanf6f7cf62017-09-25 16:49:55 -040088 SkPath path = createPath();
89
90 // Initially, cache only has the render target context
Brian Osmane9242ca2017-09-26 14:05:19 -040091 REPORTER_ASSERT(reporter, cache_non_scratch_resources_equals(cache, 0));
Brian Osmanf6f7cf62017-09-25 16:49:55 -040092
93 // Draw the path, check that new resource count matches expectations
Brian Osmane9242ca2017-09-26 14:05:19 -040094 draw_path(ctx.get(), rtc.get(), path, pathRenderer.get(), aaType, style);
Brian Osmanf6f7cf62017-09-25 16:49:55 -040095 ctx->flush();
Brian Osmane9242ca2017-09-26 14:05:19 -040096 REPORTER_ASSERT(reporter, cache_non_scratch_resources_equals(cache, 1));
Brian Osmanf6f7cf62017-09-25 16:49:55 -040097
98 // Nothing should be purgeable yet
99 cache->purgeAsNeeded();
Brian Osmane9242ca2017-09-26 14:05:19 -0400100 REPORTER_ASSERT(reporter, cache_non_scratch_resources_equals(cache, 1));
Brian Osmanf6f7cf62017-09-25 16:49:55 -0400101
102 // Reset the path to change the GenID, which should invalidate any resources in the cache
103 path.reset();
104 cache->purgeAsNeeded();
Brian Osmane9242ca2017-09-26 14:05:19 -0400105 REPORTER_ASSERT(reporter, cache_non_scratch_resources_equals(cache, 0));
Brian Osmanf6f7cf62017-09-25 16:49:55 -0400106}
107
108// Test that deleting the original path invalidates the VBs cached by the tessellating path renderer
109DEF_GPUTEST(TessellatingPathRendererCacheTest, reporter, factory) {
Brian Osmane9242ca2017-09-26 14:05:19 -0400110 auto createPR = [](GrContext*) {
111 return new GrTessellatingPathRenderer();
112 };
Brian Osmanf6f7cf62017-09-25 16:49:55 -0400113
114 // Tessellating path renderer stores vertex buffers in the cache (for non-AA paths)
Brian Osmane9242ca2017-09-26 14:05:19 -0400115 test_path(reporter, create_concave_path, createPR);
Brian Osmanf6f7cf62017-09-25 16:49:55 -0400116
Brian Osmane9242ca2017-09-26 14:05:19 -0400117 // Test with a style that alters the path geometry. This needs to attach the invalidation logic
118 // to the original path, not the modified path produced by the style.
Brian Osmanf6f7cf62017-09-25 16:49:55 -0400119 SkPaint paint;
120 paint.setStyle(SkPaint::kStroke_Style);
121 paint.setStrokeWidth(1);
122 GrStyle style(paint);
Brian Osmane9242ca2017-09-26 14:05:19 -0400123 test_path(reporter, create_concave_path, createPR, GrAAType::kNone, style);
124}
125
126// Test that deleting the original path invalidates the textures cached by the SW path renderer
127DEF_GPUTEST(SoftwarePathRendererCacheTest, reporter, factory) {
128 auto createPR = [](GrContext* ctx) {
129 return new GrSoftwarePathRenderer(ctx->resourceProvider(), true);
130 };
131
132 // Tessellating path renderer stores vertex buffers in the cache (for non-AA paths)
133 test_path(reporter, create_concave_path, createPR, GrAAType::kCoverage);
134
135 // Test with a style that alters the path geometry. This needs to attach the invalidation logic
136 // to the original path, not the modified path produced by the style.
137 SkPaint paint;
138 paint.setStyle(SkPaint::kStroke_Style);
139 paint.setStrokeWidth(1);
140 GrStyle style(paint);
141 test_path(reporter, create_concave_path, createPR, GrAAType::kCoverage, style);
Brian Osmanf6f7cf62017-09-25 16:49:55 -0400142}
143
144#endif