OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2014 Google Inc. | 2 * Copyright 2014 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #if SK_SUPPORT_GPU | 8 #if SK_SUPPORT_GPU |
9 | 9 |
10 #include "GrContext.h" | 10 #include "GrContext.h" |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 | 119 |
120 { | 120 { |
121 SkPictureRecorder recorder; | 121 SkPictureRecorder recorder; |
122 SkCanvas* c = recorder.beginRecording(1, 1); | 122 SkCanvas* c = recorder.beginRecording(1, 1); |
123 // Draw something, anything, to prevent an empty-picture optimization, | 123 // Draw something, anything, to prevent an empty-picture optimization, |
124 // which is a singleton and never purged. | 124 // which is a singleton and never purged. |
125 c->drawRect(SkRect::MakeWH(1,1), SkPaint()); | 125 c->drawRect(SkRect::MakeWH(1,1), SkPaint()); |
126 picture = recorder.finishRecordingAsPicture(); | 126 picture = recorder.finishRecordingAsPicture(); |
127 } | 127 } |
128 | 128 |
129 GrResourceCache* resourceCache = ctxInfo.fGrContext->getResourceCache(); | 129 GrResourceCache* resourceCache = ctxInfo.grContext()->getResourceCache(); |
130 | 130 |
131 GrLayerCache cache(ctxInfo.fGrContext); | 131 GrLayerCache cache(ctxInfo.grContext()); |
132 | 132 |
133 create_layers(reporter, &cache, *picture, kInitialNumLayers, 0); | 133 create_layers(reporter, &cache, *picture, kInitialNumLayers, 0); |
134 | 134 |
135 for (int i = 0; i < kInitialNumLayers; ++i) { | 135 for (int i = 0; i < kInitialNumLayers; ++i) { |
136 int key[1] = { i + 1 }; | 136 int key[1] = { i + 1 }; |
137 GrCachedLayer* layer = TestingAccess::Find(&cache, picture->uniqueID(),
SkMatrix::I(), | 137 GrCachedLayer* layer = TestingAccess::Find(&cache, picture->uniqueID(),
SkMatrix::I(), |
138 key, 1); | 138 key, 1); |
139 REPORTER_ASSERT(reporter, layer); | 139 REPORTER_ASSERT(reporter, layer); |
140 | 140 |
141 lock_layer(reporter, &cache, layer); | 141 lock_layer(reporter, &cache, layer); |
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
360 cache.end(); | 360 cache.end(); |
361 | 361 |
362 #if GR_CACHE_STATS | 362 #if GR_CACHE_STATS |
363 resourceCache->getStats(&stats); | 363 resourceCache->getStats(&stats); |
364 REPORTER_ASSERT(reporter, 2 == stats.fTotal); | 364 REPORTER_ASSERT(reporter, 2 == stats.fTotal); |
365 REPORTER_ASSERT(reporter, 2 == stats.fNumPurgeable); | 365 REPORTER_ASSERT(reporter, 2 == stats.fNumPurgeable); |
366 #endif | 366 #endif |
367 } | 367 } |
368 | 368 |
369 #endif | 369 #endif |
OLD | NEW |