blob: 2186a6dba954fc163c175e0ea8cb86606d169e79 [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
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00008
robertphillips@google.combeeb97c2012-05-09 21:15:28 +00009#include "Test.h"
bsalomon@google.coma68937c2012-08-03 15:00:52 +000010// This is a GR test
11#if SK_SUPPORT_GPU
bsalomon@google.com67b915d2013-02-04 16:13:32 +000012#include "GrContextFactory.h"
robertphillips@google.combeeb97c2012-05-09 21:15:28 +000013#include "SkGpuDevice.h"
14#include "../../src/gpu/GrClipMaskManager.h"
15
16static const int X_SIZE = 12;
17static const int Y_SIZE = 12;
18
19////////////////////////////////////////////////////////////////////////////////
caryclark@google.com42639cd2012-06-06 12:03:39 +000020// note: this is unused
robertphillips@google.combeeb97c2012-05-09 21:15:28 +000021static GrTexture* createTexture(GrContext* context) {
robertphillips@google.comd82f3fa2012-05-10 21:26:48 +000022 unsigned char textureData[X_SIZE][Y_SIZE][4];
robertphillips@google.combeeb97c2012-05-09 21:15:28 +000023
robertphillips@google.comd82f3fa2012-05-10 21:26:48 +000024 memset(textureData, 0, 4* X_SIZE * Y_SIZE);
robertphillips@google.combeeb97c2012-05-09 21:15:28 +000025
26 GrTextureDesc desc;
27
28 // let Skia know we will be using this texture as a render target
29 desc.fFlags = kRenderTarget_GrTextureFlagBit;
bsalomon@google.comfec0bc32013-02-07 14:43:04 +000030 desc.fConfig = kSkia8888_GrPixelConfig;
robertphillips@google.combeeb97c2012-05-09 21:15:28 +000031 desc.fWidth = X_SIZE;
32 desc.fHeight = Y_SIZE;
robertphillips@google.combeeb97c2012-05-09 21:15:28 +000033
34 // We are initializing the texture with zeros here
35 GrTexture* texture = context->createUncachedTexture(desc, textureData, 0);
36 if (!texture) {
37 return NULL;
38 }
39
40 return texture;
41}
42
robertphillips@google.comc23a63b2012-07-31 11:47:29 +000043// Ensure that the 'getConservativeBounds' calls are returning bounds clamped
44// to the render target
45static void test_clip_bounds(skiatest::Reporter* reporter, GrContext* context) {
46
47 static const int kXSize = 100;
48 static const int kYSize = 100;
49
50 GrTextureDesc desc;
51 desc.fFlags = kRenderTarget_GrTextureFlagBit;
52 desc.fConfig = kAlpha_8_GrPixelConfig;
53 desc.fWidth = kXSize;
54 desc.fHeight = kYSize;
55
56 GrTexture* texture = context->createUncachedTexture(desc, NULL, 0);
57 if (!texture) {
58 return;
59 }
60
61 GrAutoUnref au(texture);
62
63 SkIRect intScreen = SkIRect::MakeWH(kXSize, kYSize);
rmistry@google.comd6176b02012-08-23 18:14:13 +000064 SkRect screen = SkRect::MakeWH(SkIntToScalar(kXSize),
robertphillips@google.comc23a63b2012-07-31 11:47:29 +000065 SkIntToScalar(kYSize));
66 SkRect clipRect(screen);
67 clipRect.outset(10, 10);
68
69 // create a clip stack that will (trivially) reduce to a single rect that
70 // is larger than the screen
71 SkClipStack stack;
72 stack.clipDevRect(clipRect, SkRegion::kReplace_Op, false);
73
74 bool isIntersectionOfRects = true;
robertphillips@google.com7b112892012-07-31 15:18:21 +000075 SkRect devStackBounds;
robertphillips@google.comc23a63b2012-07-31 11:47:29 +000076
rmistry@google.comd6176b02012-08-23 18:14:13 +000077 stack.getConservativeBounds(0, 0, kXSize, kYSize,
78 &devStackBounds,
robertphillips@google.comc23a63b2012-07-31 11:47:29 +000079 &isIntersectionOfRects);
80
81 // make sure that the SkClipStack is behaving itself
robertphillips@google.com7b112892012-07-31 15:18:21 +000082 REPORTER_ASSERT(reporter, screen == devStackBounds);
robertphillips@google.comc23a63b2012-07-31 11:47:29 +000083 REPORTER_ASSERT(reporter, isIntersectionOfRects);
84
robertphillips@google.com641f8b12012-07-31 19:15:58 +000085 // wrap the SkClipStack in a GrClipData
robertphillips@google.comc23a63b2012-07-31 11:47:29 +000086 GrClipData clipData;
robertphillips@google.com641f8b12012-07-31 19:15:58 +000087 clipData.fClipStack = &stack;
robertphillips@google.comc23a63b2012-07-31 11:47:29 +000088
robertphillips@google.com7b112892012-07-31 15:18:21 +000089 SkIRect devGrClipDataBound;
robertphillips@google.comc23a63b2012-07-31 11:47:29 +000090 clipData.getConservativeBounds(texture,
robertphillips@google.com7b112892012-07-31 15:18:21 +000091 &devGrClipDataBound,
robertphillips@google.comc23a63b2012-07-31 11:47:29 +000092 &isIntersectionOfRects);
93
94 // make sure that GrClipData is behaving itself
robertphillips@google.com7b112892012-07-31 15:18:21 +000095 REPORTER_ASSERT(reporter, intScreen == devGrClipDataBound);
robertphillips@google.comc23a63b2012-07-31 11:47:29 +000096 REPORTER_ASSERT(reporter, isIntersectionOfRects);
97}
98
robertphillips@google.combeeb97c2012-05-09 21:15:28 +000099////////////////////////////////////////////////////////////////////////////////
100// verify that the top state of the stack matches the passed in state
101static void check_state(skiatest::Reporter* reporter,
102 const GrClipMaskCache& cache,
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000103 const SkClipStack& clip,
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000104 GrTexture* mask,
robertphillips@google.com6623fcd2012-05-15 16:47:23 +0000105 const GrIRect& bound) {
skia.committer@gmail.comd21444a2012-12-07 02:01:25 +0000106 SkClipStack cacheClip;
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000107 REPORTER_ASSERT(reporter, clip.getTopmostGenID() == cache.getLastClipGenID());
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000108
109 REPORTER_ASSERT(reporter, mask == cache.getLastMask());
110
robertphillips@google.com6623fcd2012-05-15 16:47:23 +0000111 GrIRect cacheBound;
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000112 cache.getLastBound(&cacheBound);
113 REPORTER_ASSERT(reporter, bound == cacheBound);
114}
115
116////////////////////////////////////////////////////////////////////////////////
117// basic test of the cache's base functionality:
118// push, pop, set, canReuse & getters
119static void test_cache(skiatest::Reporter* reporter, GrContext* context) {
120
caryclark@google.com42639cd2012-06-06 12:03:39 +0000121 if (false) { // avoid bit rot, suppress warning
rmistry@google.comd6176b02012-08-23 18:14:13 +0000122 createTexture(context);
caryclark@google.com42639cd2012-06-06 12:03:39 +0000123 }
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000124 GrClipMaskCache cache;
125
robertphillips@google.comf105b102012-05-14 12:18:26 +0000126 cache.setContext(context);
127
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000128 SkClipStack emptyClip;
129 emptyClip.reset();
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000130
robertphillips@google.com6623fcd2012-05-15 16:47:23 +0000131 GrIRect emptyBound;
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000132 emptyBound.setEmpty();
133
134 // check initial state
robertphillips@google.com8fff3562012-05-11 12:53:50 +0000135 check_state(reporter, cache, emptyClip, NULL, emptyBound);
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000136
137 // set the current state
robertphillips@google.com6623fcd2012-05-15 16:47:23 +0000138 GrIRect bound1;
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000139 bound1.set(0, 0, 100, 100);
140
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000141 SkClipStack clip1(bound1);
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000142
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000143 GrTextureDesc desc;
144 desc.fFlags = kRenderTarget_GrTextureFlagBit;
145 desc.fWidth = X_SIZE;
146 desc.fHeight = Y_SIZE;
bsalomon@google.comfec0bc32013-02-07 14:43:04 +0000147 desc.fConfig = kSkia8888_GrPixelConfig;
robertphillips@google.comd82f3fa2012-05-10 21:26:48 +0000148
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000149 cache.acquireMask(clip1.getTopmostGenID(), desc, bound1);
robertphillips@google.comf105b102012-05-14 12:18:26 +0000150
151 GrTexture* texture1 = cache.getLastMask();
152 REPORTER_ASSERT(reporter, texture1);
153 if (NULL == texture1) {
robertphillips@google.comd82f3fa2012-05-10 21:26:48 +0000154 return;
155 }
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000156
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000157 // check that the set took
robertphillips@google.comf105b102012-05-14 12:18:26 +0000158 check_state(reporter, cache, clip1, texture1, bound1);
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000159 REPORTER_ASSERT(reporter, texture1->getRefCnt());
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000160
161 // push the state
162 cache.push();
163
164 // verify that the pushed state is initially empty
robertphillips@google.com8fff3562012-05-11 12:53:50 +0000165 check_state(reporter, cache, emptyClip, NULL, emptyBound);
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000166 REPORTER_ASSERT(reporter, texture1->getRefCnt());
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000167
168 // modify the new state
robertphillips@google.com6623fcd2012-05-15 16:47:23 +0000169 GrIRect bound2;
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000170 bound2.set(-10, -10, 10, 10);
171
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000172 SkClipStack clip2(bound2);
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000173
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000174 cache.acquireMask(clip2.getTopmostGenID(), desc, bound2);
robertphillips@google.comf105b102012-05-14 12:18:26 +0000175
176 GrTexture* texture2 = cache.getLastMask();
177 REPORTER_ASSERT(reporter, texture2);
178 if (NULL == texture2) {
179 return;
180 }
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000181
182 // check that the changes took
robertphillips@google.comf105b102012-05-14 12:18:26 +0000183 check_state(reporter, cache, clip2, texture2, bound2);
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000184 REPORTER_ASSERT(reporter, texture1->getRefCnt());
185 REPORTER_ASSERT(reporter, texture2->getRefCnt());
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000186
187 // check to make sure canReuse works
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000188 REPORTER_ASSERT(reporter, cache.canReuse(clip2.getTopmostGenID(), bound2));
189 REPORTER_ASSERT(reporter, !cache.canReuse(clip1.getTopmostGenID(), bound1));
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000190
191 // pop the state
192 cache.pop();
193
194 // verify that the old state is restored
robertphillips@google.comf105b102012-05-14 12:18:26 +0000195 check_state(reporter, cache, clip1, texture1, bound1);
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000196 REPORTER_ASSERT(reporter, texture1->getRefCnt());
197 REPORTER_ASSERT(reporter, texture2->getRefCnt());
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000198
199 // manually clear the state
200 cache.reset();
201
202 // verify it is now empty
robertphillips@google.com8fff3562012-05-11 12:53:50 +0000203 check_state(reporter, cache, emptyClip, NULL, emptyBound);
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000204 REPORTER_ASSERT(reporter, texture1->getRefCnt());
205 REPORTER_ASSERT(reporter, texture2->getRefCnt());
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000206
207 // pop again - so there is no state
208 cache.pop();
209
210#if !defined(SK_DEBUG)
211 // verify that the getters don't crash
212 // only do in release since it generates asserts in debug
robertphillips@google.comf21c7042012-05-11 13:01:16 +0000213 check_state(reporter, cache, emptyClip, NULL, emptyBound);
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000214#endif
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000215 REPORTER_ASSERT(reporter, texture1->getRefCnt());
216 REPORTER_ASSERT(reporter, texture2->getRefCnt());
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000217}
218
219////////////////////////////////////////////////////////////////////////////////
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000220static void TestClipCache(skiatest::Reporter* reporter, GrContextFactory* factory) {
221 for (int type = 0; type < GrContextFactory::kLastGLContextType; ++type) {
222 GrContextFactory::GLContextType glType = static_cast<GrContextFactory::GLContextType>(type);
223 if (!GrContextFactory::IsRenderingGLContext(glType)) {
224 continue;
225 }
226 GrContext* context = factory->get(glType);
227 if (NULL == context) {
228 continue;
229 }
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000230
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000231 test_cache(reporter, context);
232 test_clip_bounds(reporter, context);
233 }
robertphillips@google.combeeb97c2012-05-09 21:15:28 +0000234}
235
236////////////////////////////////////////////////////////////////////////////////
237#include "TestClassDef.h"
238DEFINE_GPUTESTCLASS("ClipCache", ClipCacheTestClass, TestClipCache)
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000239
240#endif