OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2015 Google Inc. | 2 * Copyright 2015 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 #include "SkImage_Base.h" | 8 #include "SkImage_Base.h" |
9 #include "SkBitmap.h" | 9 #include "SkBitmap.h" |
10 #include "SkData.h" | 10 #include "SkData.h" |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 } | 77 } |
78 | 78 |
79 bool SkImage_Generator::getROPixels(SkBitmap* bitmap) const { | 79 bool SkImage_Generator::getROPixels(SkBitmap* bitmap) const { |
80 return fCache->lockAsBitmap(bitmap); | 80 return fCache->lockAsBitmap(bitmap); |
81 } | 81 } |
82 | 82 |
83 GrTexture* SkImage_Generator::asTextureRef(GrContext* ctx, SkImageUsageType usag
e) const { | 83 GrTexture* SkImage_Generator::asTextureRef(GrContext* ctx, SkImageUsageType usag
e) const { |
84 return fCache->lockAsTexture(ctx, usage); | 84 return fCache->lockAsTexture(ctx, usage); |
85 } | 85 } |
86 | 86 |
87 #ifndef SK_SUPPORT_LEGACY_NEWFROMGENERATOR | |
88 SkImage* SkImage::NewFromGenerator(SkImageGenerator* generator, const SkIRect* s
ubset) { | 87 SkImage* SkImage::NewFromGenerator(SkImageGenerator* generator, const SkIRect* s
ubset) { |
89 SkImageCacherator* cache = SkImageCacherator::NewFromGenerator(generator, su
bset); | 88 SkImageCacherator* cache = SkImageCacherator::NewFromGenerator(generator, su
bset); |
90 if (!cache) { | 89 if (!cache) { |
91 return nullptr; | 90 return nullptr; |
92 } | 91 } |
93 return SkNEW_ARGS(SkImage_Generator, (cache)); | 92 return SkNEW_ARGS(SkImage_Generator, (cache)); |
94 } | 93 } |
95 #endif | |
OLD | NEW |