| 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 // locking & unlocking textures). | 108 // locking & unlocking textures). |
| 109 // TODO: need to add checks on VRAM usage! | 109 // TODO: need to add checks on VRAM usage! |
| 110 DEF_GPUTEST_FOR_RENDERING_CONTEXTS(GpuLayerCache, reporter, context) { | 110 DEF_GPUTEST_FOR_RENDERING_CONTEXTS(GpuLayerCache, reporter, context) { |
| 111 // Add one more layer than can fit in the atlas | 111 // Add one more layer than can fit in the atlas |
| 112 static const int kInitialNumLayers = TestingAccess::NumPlots() + 1; | 112 static const int kInitialNumLayers = TestingAccess::NumPlots() + 1; |
| 113 | 113 |
| 114 #if GR_CACHE_STATS | 114 #if GR_CACHE_STATS |
| 115 GrResourceCache::Stats stats; | 115 GrResourceCache::Stats stats; |
| 116 #endif | 116 #endif |
| 117 | 117 |
| 118 SkAutoTUnref<const SkPicture> picture; | 118 sk_sp<SkPicture> picture; |
| 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.reset(recorder.endRecording()); | 126 picture = recorder.finishRecordingAsPicture(); |
| 127 } | 127 } |
| 128 | 128 |
| 129 GrResourceCache* resourceCache = context->getResourceCache(); | 129 GrResourceCache* resourceCache = context->getResourceCache(); |
| 130 | 130 |
| 131 GrLayerCache cache(context); | 131 GrLayerCache cache(context); |
| 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 }; |
| (...skipping 223 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 |