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

Side by Side Diff: src/core/SkLocalMatrixShader.h

Issue 318923005: SkShader::asNewEffect Refactoring (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: added macros to check for gpu support Created 6 years, 6 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/core/SkBitmapProcShader.cpp ('k') | src/core/SkPictureShader.h » ('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 2014 Google Inc. 2 * Copyright 2014 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 SkLocalMatrixShader_DEFINED 8 #ifndef SkLocalMatrixShader_DEFINED
9 #define SkLocalMatrixShader_DEFINED 9 #define SkLocalMatrixShader_DEFINED
10 10
(...skipping 14 matching lines...) Expand all
25 25
26 virtual BitmapType asABitmap(SkBitmap* bitmap, SkMatrix* matrix, 26 virtual BitmapType asABitmap(SkBitmap* bitmap, SkMatrix* matrix,
27 TileMode* mode) const SK_OVERRIDE { 27 TileMode* mode) const SK_OVERRIDE {
28 return fProxyShader->asABitmap(bitmap, matrix, mode); 28 return fProxyShader->asABitmap(bitmap, matrix, mode);
29 } 29 }
30 30
31 virtual GradientType asAGradient(GradientInfo* info) const SK_OVERRIDE { 31 virtual GradientType asAGradient(GradientInfo* info) const SK_OVERRIDE {
32 return fProxyShader->asAGradient(info); 32 return fProxyShader->asAGradient(info);
33 } 33 }
34 34
35 virtual GrEffectRef* asNewEffect(GrContext* ctx, const SkPaint& paint, 35 #if SK_SUPPORT_GPU
36 const SkMatrix* localMatrix) const SK_OVERR IDE { 36
37 virtual bool asNewEffect(GrContext* context, const SkPaint& paint, const SkM atrix* localMatrix,
38 GrColor* grColor, GrEffectRef** grEffect) const SK_ OVERRIDE {
37 SkMatrix tmp = fProxyLocalMatrix; 39 SkMatrix tmp = fProxyLocalMatrix;
38 if (localMatrix) { 40 if (localMatrix) {
39 tmp.preConcat(*localMatrix); 41 tmp.preConcat(*localMatrix);
40 } 42 }
41 return fProxyShader->asNewEffect(ctx, paint, &tmp); 43 return fProxyShader->asNewEffect(context, paint, &tmp, grColor, grEffect );
42 } 44 }
43 45
46 #else
47
48 virtual bool asNewEffect(GrContext* context, const SkPaint& paint, const SkM atrix* localMatrix,
49 GrColor* grColor, GrEffectRef** grEffect) const SK_ OVERRIDE {
50 SkDEBUGFAIL("Should not call in GPU-less build");
51 return false;
52 }
53
54 #endif
55
44 virtual SkShader* refAsALocalMatrixShader(SkMatrix* localMatrix) const SK_OV ERRIDE { 56 virtual SkShader* refAsALocalMatrixShader(SkMatrix* localMatrix) const SK_OV ERRIDE {
45 if (localMatrix) { 57 if (localMatrix) {
46 *localMatrix = fProxyLocalMatrix; 58 *localMatrix = fProxyLocalMatrix;
47 } 59 }
48 return SkRef(fProxyShader.get()); 60 return SkRef(fProxyShader.get());
49 } 61 }
50 62
51 SK_TO_STRING_OVERRIDE() 63 SK_TO_STRING_OVERRIDE()
52 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkLocalMatrixShader) 64 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkLocalMatrixShader)
53 65
54 protected: 66 protected:
55 SkLocalMatrixShader(SkReadBuffer&); 67 SkLocalMatrixShader(SkReadBuffer&);
56 virtual void flatten(SkWriteBuffer&) const SK_OVERRIDE; 68 virtual void flatten(SkWriteBuffer&) const SK_OVERRIDE;
57 virtual Context* onCreateContext(const ContextRec&, void*) const SK_OVERRIDE ; 69 virtual Context* onCreateContext(const ContextRec&, void*) const SK_OVERRIDE ;
58 70
59 private: 71 private:
60 SkAutoTUnref<SkShader> fProxyShader; 72 SkAutoTUnref<SkShader> fProxyShader;
61 SkMatrix fProxyLocalMatrix; 73 SkMatrix fProxyLocalMatrix;
62 74
63 typedef SkShader INHERITED; 75 typedef SkShader INHERITED;
64 }; 76 };
65 77
66 #endif 78 #endif
OLDNEW
« no previous file with comments | « src/core/SkBitmapProcShader.cpp ('k') | src/core/SkPictureShader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698