blob: 77f0137d5a58996b3d1f97c48484c4f45b7ceb19 [file] [log] [blame]
robertphillips@google.combeeb97c2012-05-09 21:15:28 +00001/*
2 * Copyright 2012 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"
bsalomon@google.coma68937c2012-08-03 15:00:52 +00009// This is a GR test
10#if SK_SUPPORT_GPU
tfarina@chromium.org8f6884a2014-01-24 20:56:26 +000011#include "../../src/gpu/GrClipMaskManager.h"
bsalomon@google.com67b915d2013-02-04 16:13:32 +000012#include "GrContextFactory.h"
robertphillips@google.combeeb97c2012-05-09 21:15:28 +000013#include "SkGpuDevice.h"
robertphillips@google.combeeb97c2012-05-09 21:15:28 +000014
15static const int X_SIZE = 12;
16static const int Y_SIZE = 12;
17
18////////////////////////////////////////////////////////////////////////////////
caryclark@google.com42639cd2012-06-06 12:03:39 +000019// note: this is unused
robertphillips@google.combeeb97c2012-05-09 21:15:28 +000020static GrTexture* createTexture(GrContext* context) {
robertphillips@google.comd82f3fa2012-05-10 21:26:48 +000021 unsigned char textureData[X_SIZE][Y_SIZE][4];
robertphillips@google.combeeb97c2012-05-09 21:15:28 +000022
robertphillips@google.comd82f3fa2012-05-10 21:26:48 +000023 memset(textureData, 0, 4* X_SIZE * Y_SIZE);
robertphillips@google.combeeb97c2012-05-09 21:15:28 +000024
25 GrTextureDesc desc;
26
27 // let Skia know we will be using this texture as a render target
28 desc.fFlags = kRenderTarget_GrTextureFlagBit;
bsalomon@google.comfec0bc32013-02-07 14:43:04 +000029 desc.fConfig = kSkia8888_GrPixelConfig;
robertphillips@google.combeeb97c2012-05-09 21:15:28 +000030 desc.fWidth = X_SIZE;
31 desc.fHeight = Y_SIZE;
robertphillips@google.combeeb97c2012-05-09 21:15:28 +000032
33 // We are initializing the texture with zeros here
34 GrTexture* texture = context->createUncachedTexture(desc, textureData, 0);
35 if (!texture) {
36 return NULL;
37 }
38
39 return texture;
40}
41
robertphillips@google.comc23a63b2012-07-31 11:47:29 +000042// Ensure that the 'getConservativeBounds' calls are returning bounds clamped
43// to the render target
44static void test_clip_bounds(skiatest::Reporter* reporter, GrContext* context) {
45
46 static const int kXSize = 100;
47 static const int kYSize = 100;
48
49 GrTextureDesc desc;
50 desc.fFlags = kRenderTarget_GrTextureFlagBit;
51 desc.fConfig = kAlpha_8_GrPixelConfig;
52 desc.fWidth = kXSize;
53 desc.fHeight = kYSize;
54
55 GrTexture* texture = context->createUncachedTexture(desc, NULL, 0);
56 if (!texture) {
57 return;
58 }
59
commit-bot@chromium.orga4de8c22013-09-09 13:38:37 +000060 SkAutoUnref au(texture);
robertphillips@google.comc23a63b2012-07-31 11:47:29 +000061
62 SkIRect intScreen = SkIRect::MakeWH(kXSize, kYSize);
robertphillips@google.comb755a2a2013-03-04 14:59:55 +000063 SkRect screen;
skia.committer@gmail.com075b0892013-03-05 07:09:08 +000064
robertphillips@google.comb755a2a2013-03-04 14:59:55 +000065 screen = SkRect::MakeWH(SkIntToScalar(kXSize),
66 SkIntToScalar(kYSize));
67
robertphillips@google.comc23a63b2012-07-31 11:47:29 +000068 SkRect clipRect(screen);
69 clipRect.outset(10, 10);
70
71 // create a clip stack that will (trivially) reduce to a single rect that
72 // is larger than the screen
73 SkClipStack stack;
74 stack.clipDevRect(clipRect, SkRegion::kReplace_Op, false);
75
76 bool isIntersectionOfRects = true;
robertphillips@google.com7b112892012-07-31 15:18:21 +000077 SkRect devStackBounds;
robertphillips@google.comc23a63b2012-07-31 11:47:29 +000078
rmistry@google.comd6176b02012-08-23 18:14:13 +000079 stack.getConservativeBounds(0, 0, kXSize, kYSize,
80 &devStackBounds,
robertphillips@google.comc23a63b2012-07-31 11:47:29 +000081 &isIntersectionOfRects);
82
83 // make sure that the SkClipStack is behaving itself
robertphillips@google.com7b112892012-07-31 15:18:21 +000084 REPORTER_ASSERT(reporter, screen == devStackBounds);
robertphillips@google.comc23a63b2012-07-31 11:47:29 +000085 REPORTER_ASSERT(reporter, isIntersectionOfRects);
86
robertphillips@google.com641f8b12012-07-31 19:15:58 +000087 // wrap the SkClipStack in a GrClipData
robertphillips@google.comc23a63b2012-07-31 11:47:29 +000088 GrClipData clipData;
robertphillips@google.com641f8b12012-07-31 19:15:58 +000089 clipData.fClipStack = &stack;
robertphillips@google.comc23a63b2012-07-31 11:47:29 +000090
robertphillips@google.com7b112892012-07-31 15:18:21 +000091 SkIRect devGrClipDataBound;
robertphillips@google.comc23a63b2012-07-31 11:47:29 +000092 clipData.getConservativeBounds(texture,
robertphillips@google.com7b112892012-07-31 15:18:21 +000093 &devGrClipDataBound,
robertphillips@google.comc23a63b2012-07-31 11:47:29 +000094 &isIntersectionOfRects);
95
96 // make sure that GrClipData is behaving itself
robertphillips@google.com7b112892012-07-31 15:18:21 +000097 REPORTER_ASSERT(reporter, intScreen == devGrClipDataBound);
robertphillips@google.comc23a63b2012-07-31 11:47:29 +000098 REPORTER_ASSERT(reporter, isIntersectionOfRects);
99}
100
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000101////////////////////////////////////////////////////////////////////////////////
102// verify that the top state of the stack matches the passed in state
103static void check_state(skiatest::Reporter* reporter,
104 const GrClipMaskCache& cache,
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000105 const SkClipStack& clip,
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000106 GrTexture* mask,
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000107 const SkIRect& bound) {
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000108 REPORTER_ASSERT(reporter, clip.getTopmostGenID() == cache.getLastClipGenID());
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000109
110 REPORTER_ASSERT(reporter, mask == cache.getLastMask());
111
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000112 SkIRect cacheBound;
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000113 cache.getLastBound(&cacheBound);
114 REPORTER_ASSERT(reporter, bound == cacheBound);
115}
116
commit-bot@chromium.orgd3e58422013-11-05 15:03:08 +0000117static void check_empty_state(skiatest::Reporter* reporter,
118 const GrClipMaskCache& cache) {
119 REPORTER_ASSERT(reporter, SkClipStack::kInvalidGenID == cache.getLastClipGenID());
120 REPORTER_ASSERT(reporter, NULL == cache.getLastMask());
121
122 SkIRect emptyBound;
123 emptyBound.setEmpty();
124
125 SkIRect cacheBound;
126 cache.getLastBound(&cacheBound);
127 REPORTER_ASSERT(reporter, emptyBound == cacheBound);
128}
129
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000130////////////////////////////////////////////////////////////////////////////////
131// basic test of the cache's base functionality:
132// push, pop, set, canReuse & getters
133static void test_cache(skiatest::Reporter* reporter, GrContext* context) {
134
caryclark@google.com42639cd2012-06-06 12:03:39 +0000135 if (false) { // avoid bit rot, suppress warning
rmistry@google.comd6176b02012-08-23 18:14:13 +0000136 createTexture(context);
caryclark@google.com42639cd2012-06-06 12:03:39 +0000137 }
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000138 GrClipMaskCache cache;
139
robertphillips@google.comf105b102012-05-14 12:18:26 +0000140 cache.setContext(context);
141
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000142 // check initial state
commit-bot@chromium.orgd3e58422013-11-05 15:03:08 +0000143 check_empty_state(reporter, cache);
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000144
145 // set the current state
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000146 SkIRect bound1;
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000147 bound1.set(0, 0, 100, 100);
148
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000149 SkClipStack clip1(bound1);
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000150
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000151 GrTextureDesc desc;
152 desc.fFlags = kRenderTarget_GrTextureFlagBit;
153 desc.fWidth = X_SIZE;
154 desc.fHeight = Y_SIZE;
bsalomon@google.comfec0bc32013-02-07 14:43:04 +0000155 desc.fConfig = kSkia8888_GrPixelConfig;
robertphillips@google.comd82f3fa2012-05-10 21:26:48 +0000156
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000157 cache.acquireMask(clip1.getTopmostGenID(), desc, bound1);
robertphillips@google.comf105b102012-05-14 12:18:26 +0000158
159 GrTexture* texture1 = cache.getLastMask();
160 REPORTER_ASSERT(reporter, texture1);
161 if (NULL == texture1) {
robertphillips@google.comd82f3fa2012-05-10 21:26:48 +0000162 return;
163 }
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000164
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000165 // check that the set took
robertphillips@google.comf105b102012-05-14 12:18:26 +0000166 check_state(reporter, cache, clip1, texture1, bound1);
Mike Klein874a62a2014-07-09 09:04:07 -0400167 REPORTER_ASSERT(reporter, texture1->getRefCnt());
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000168
169 // push the state
170 cache.push();
171
172 // verify that the pushed state is initially empty
commit-bot@chromium.orgd3e58422013-11-05 15:03:08 +0000173 check_empty_state(reporter, cache);
Mike Klein874a62a2014-07-09 09:04:07 -0400174 REPORTER_ASSERT(reporter, texture1->getRefCnt());
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000175
176 // modify the new state
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000177 SkIRect bound2;
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000178 bound2.set(-10, -10, 10, 10);
179
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000180 SkClipStack clip2(bound2);
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000181
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000182 cache.acquireMask(clip2.getTopmostGenID(), desc, bound2);
robertphillips@google.comf105b102012-05-14 12:18:26 +0000183
184 GrTexture* texture2 = cache.getLastMask();
185 REPORTER_ASSERT(reporter, texture2);
186 if (NULL == texture2) {
187 return;
188 }
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000189
190 // check that the changes took
robertphillips@google.comf105b102012-05-14 12:18:26 +0000191 check_state(reporter, cache, clip2, texture2, bound2);
Mike Klein874a62a2014-07-09 09:04:07 -0400192 REPORTER_ASSERT(reporter, texture1->getRefCnt());
193 REPORTER_ASSERT(reporter, texture2->getRefCnt());
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000194
195 // check to make sure canReuse works
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000196 REPORTER_ASSERT(reporter, cache.canReuse(clip2.getTopmostGenID(), bound2));
197 REPORTER_ASSERT(reporter, !cache.canReuse(clip1.getTopmostGenID(), bound1));
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000198
199 // pop the state
200 cache.pop();
201
202 // verify that the old state is restored
robertphillips@google.comf105b102012-05-14 12:18:26 +0000203 check_state(reporter, cache, clip1, texture1, bound1);
Mike Klein874a62a2014-07-09 09:04:07 -0400204 REPORTER_ASSERT(reporter, texture1->getRefCnt());
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000205
206 // manually clear the state
207 cache.reset();
208
209 // verify it is now empty
commit-bot@chromium.orgd3e58422013-11-05 15:03:08 +0000210 check_empty_state(reporter, cache);
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000211
212 // pop again - so there is no state
213 cache.pop();
214
215#if !defined(SK_DEBUG)
216 // verify that the getters don't crash
217 // only do in release since it generates asserts in debug
commit-bot@chromium.orgd3e58422013-11-05 15:03:08 +0000218 check_empty_state(reporter, cache);
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000219#endif
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000220}
221
tfarina@chromium.org4ee16bf2014-01-10 22:08:27 +0000222DEF_GPUTEST(ClipCache, reporter, factory) {
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000223 for (int type = 0; type < GrContextFactory::kLastGLContextType; ++type) {
224 GrContextFactory::GLContextType glType = static_cast<GrContextFactory::GLContextType>(type);
225 if (!GrContextFactory::IsRenderingGLContext(glType)) {
226 continue;
227 }
228 GrContext* context = factory->get(glType);
229 if (NULL == context) {
230 continue;
231 }
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000232
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000233 test_cache(reporter, context);
234 test_clip_bounds(reporter, context);
235 }
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000236}
237
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000238#endif