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

Side by Side Diff: src/effects/gradients/SkSweepGradient.h

Issue 1759323002: Revert of enforce 16byte alignment in shader contexts (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 9 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/effects/gradients/SkRadialGradient.cpp ('k') | src/effects/gradients/SkSweepGradient.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 /* 2 /*
3 * Copyright 2012 Google Inc. 3 * Copyright 2012 Google Inc.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 #ifndef SkSweepGradient_DEFINED 9 #ifndef SkSweepGradient_DEFINED
10 #define SkSweepGradient_DEFINED 10 #define SkSweepGradient_DEFINED
11 11
12 #include "SkGradientShaderPriv.h" 12 #include "SkGradientShaderPriv.h"
13 13
14 class SkSweepGradient : public SkGradientShaderBase { 14 class SkSweepGradient : public SkGradientShaderBase {
15 public: 15 public:
16 SkSweepGradient(SkScalar cx, SkScalar cy, const Descriptor&); 16 SkSweepGradient(SkScalar cx, SkScalar cy, const Descriptor&);
17 17
18 size_t contextSize(const ContextRec&) const override;
19
18 class SweepGradientContext : public SkGradientShaderBase::GradientShaderBase Context { 20 class SweepGradientContext : public SkGradientShaderBase::GradientShaderBase Context {
19 public: 21 public:
20 SweepGradientContext(const SkSweepGradient& shader, const ContextRec&); 22 SweepGradientContext(const SkSweepGradient& shader, const ContextRec&);
21 23
22 void shadeSpan(int x, int y, SkPMColor dstC[], int count) override; 24 void shadeSpan(int x, int y, SkPMColor dstC[], int count) override;
23 25
24 private: 26 private:
25 typedef SkGradientShaderBase::GradientShaderBaseContext INHERITED; 27 typedef SkGradientShaderBase::GradientShaderBaseContext INHERITED;
26 }; 28 };
27 29
28 GradientType asAGradient(GradientInfo* info) const override; 30 GradientType asAGradient(GradientInfo* info) const override;
29 31
30 #if SK_SUPPORT_GPU 32 #if SK_SUPPORT_GPU
31 const GrFragmentProcessor* asFragmentProcessor(GrContext*, 33 const GrFragmentProcessor* asFragmentProcessor(GrContext*,
32 const SkMatrix& viewM, 34 const SkMatrix& viewM,
33 const SkMatrix*, 35 const SkMatrix*,
34 SkFilterQuality) const overri de; 36 SkFilterQuality) const overri de;
35 #endif 37 #endif
36 38
37 SK_TO_STRING_OVERRIDE() 39 SK_TO_STRING_OVERRIDE()
38 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkSweepGradient) 40 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkSweepGradient)
39 41
40 protected: 42 protected:
41 void flatten(SkWriteBuffer& buffer) const override; 43 void flatten(SkWriteBuffer& buffer) const override;
42 size_t onContextSize(const ContextRec&) const override;
43 Context* onCreateContext(const ContextRec&, void* storage) const override; 44 Context* onCreateContext(const ContextRec&, void* storage) const override;
44 45
45 private: 46 private:
46 const SkPoint fCenter; 47 const SkPoint fCenter;
47 48
48 friend class SkGradientShader; 49 friend class SkGradientShader;
49 typedef SkGradientShaderBase INHERITED; 50 typedef SkGradientShaderBase INHERITED;
50 }; 51 };
51 52
52 #endif 53 #endif
OLDNEW
« no previous file with comments | « src/effects/gradients/SkRadialGradient.cpp ('k') | src/effects/gradients/SkSweepGradient.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698