| 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 #ifndef SkImage_Gpu_DEFINED | 8 #ifndef SkImage_Gpu_DEFINED |
| 9 #define SkImage_Gpu_DEFINED | 9 #define SkImage_Gpu_DEFINED |
| 10 | 10 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 tex->resourcePriv().makeBudgeted(); | 33 tex->resourcePriv().makeBudgeted(); |
| 34 } else { | 34 } else { |
| 35 tex->resourcePriv().makeUnbudgeted(); | 35 tex->resourcePriv().makeUnbudgeted(); |
| 36 } | 36 } |
| 37 } | 37 } |
| 38 | 38 |
| 39 bool getROPixels(SkBitmap*) const override; | 39 bool getROPixels(SkBitmap*) const override; |
| 40 GrTexture* asTextureRef(GrContext* ctx, SkImageUsageType usage) const overri
de; | 40 GrTexture* asTextureRef(GrContext* ctx, SkImageUsageType usage) const overri
de; |
| 41 | 41 |
| 42 GrTexture* peekTexture() const override { return fTexture; } | 42 GrTexture* peekTexture() const override { return fTexture; } |
| 43 SkShader* onNewShader(SkShader::TileMode, | |
| 44 SkShader::TileMode, | |
| 45 const SkMatrix* localMatrix) const override; | |
| 46 bool isOpaque() const override; | 43 bool isOpaque() const override; |
| 47 SkSurface* onNewSurface(const SkImageInfo&, const SkSurfaceProps&) const ove
rride; | 44 SkSurface* onNewSurface(const SkImageInfo&, const SkSurfaceProps&) const ove
rride; |
| 48 bool onReadPixels(const SkImageInfo&, void* dstPixels, size_t dstRowBytes, | 45 bool onReadPixels(const SkImageInfo&, void* dstPixels, size_t dstRowBytes, |
| 49 int srcX, int srcY) const override; | 46 int srcX, int srcY) const override; |
| 50 | 47 |
| 51 private: | 48 private: |
| 52 SkAutoTUnref<GrTexture> fTexture; | 49 SkAutoTUnref<GrTexture> fTexture; |
| 53 const int fSampleCountForNewSurfaces; // 0 if we don't k
now | 50 const int fSampleCountForNewSurfaces; // 0 if we don't k
now |
| 54 const SkAlphaType fAlphaType; | 51 const SkAlphaType fAlphaType; |
| 55 const SkSurface::Budgeted fBudgeted; | 52 const SkSurface::Budgeted fBudgeted; |
| 56 mutable SkAtomic<bool> fAddedRasterVersionToCache; | 53 mutable SkAtomic<bool> fAddedRasterVersionToCache; |
| 57 | 54 |
| 58 | 55 |
| 59 typedef SkImage_Base INHERITED; | 56 typedef SkImage_Base INHERITED; |
| 60 }; | 57 }; |
| 61 | 58 |
| 62 #endif | 59 #endif |
| OLD | NEW |