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

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

Issue 1375673002: Revert of Revert[2] of add ImageShader, sharing code with its Bitmap cousin (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 2 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 } else { 33 } else {
34 tex->resourcePriv().makeUnbudgeted(); 34 tex->resourcePriv().makeUnbudgeted();
35 } 35 }
36 } 36 }
37 37
38 bool getROPixels(SkBitmap*) const override; 38 bool getROPixels(SkBitmap*) const override;
39 GrTexture* asTextureRef(GrContext* ctx, SkImageUsageType usage) const overri de; 39 GrTexture* asTextureRef(GrContext* ctx, SkImageUsageType usage) const overri de;
40 SkImage* onNewSubset(const SkIRect&) const override; 40 SkImage* onNewSubset(const SkIRect&) const override;
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;
43 bool isOpaque() const override; 46 bool isOpaque() const override;
44 bool onReadPixels(const SkImageInfo&, void* dstPixels, size_t dstRowBytes, 47 bool onReadPixels(const SkImageInfo&, void* dstPixels, size_t dstRowBytes,
45 int srcX, int srcY) const override; 48 int srcX, int srcY) const override;
46 49
47 private: 50 private:
48 SkAutoTUnref<GrTexture> fTexture; 51 SkAutoTUnref<GrTexture> fTexture;
49 const SkAlphaType fAlphaType; 52 const SkAlphaType fAlphaType;
50 const SkSurface::Budgeted fBudgeted; 53 const SkSurface::Budgeted fBudgeted;
51 mutable SkAtomic<bool> fAddedRasterVersionToCache; 54 mutable SkAtomic<bool> fAddedRasterVersionToCache;
52 55
53 56
54 typedef SkImage_Base INHERITED; 57 typedef SkImage_Base INHERITED;
55 }; 58 };
56 59
57 #endif 60 #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