Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(76)

Side by Side Diff: src/image/SkImage_Gpu.h

Issue 1342113002: add ImageShader, sharing code with its Bitmap cousin (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/image/SkImage_Generator.cpp ('k') | src/image/SkImage_Gpu.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « src/image/SkImage_Generator.cpp ('k') | src/image/SkImage_Gpu.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698