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

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

Issue 1352293002: 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;
46 bool isOpaque() const override; 43 bool isOpaque() const override;
47 bool onReadPixels(const SkImageInfo&, void* dstPixels, size_t dstRowBytes, 44 bool onReadPixels(const SkImageInfo&, void* dstPixels, size_t dstRowBytes,
48 int srcX, int srcY) const override; 45 int srcX, int srcY) const override;
49 46
50 private: 47 private:
51 SkAutoTUnref<GrTexture> fTexture; 48 SkAutoTUnref<GrTexture> fTexture;
52 const SkAlphaType fAlphaType; 49 const SkAlphaType fAlphaType;
53 const SkSurface::Budgeted fBudgeted; 50 const SkSurface::Budgeted fBudgeted;
54 mutable SkAtomic<bool> fAddedRasterVersionToCache; 51 mutable SkAtomic<bool> fAddedRasterVersionToCache;
55 52
56 53
57 typedef SkImage_Base INHERITED; 54 typedef SkImage_Base INHERITED;
58 }; 55 };
59 56
60 #endif 57 #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