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

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

Issue 134163010: Refactor read and write buffers. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: original write flags were fine Created 6 years, 10 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
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 SkRadialGradient_DEFINED 9 #ifndef SkRadialGradient_DEFINED
10 #define SkRadialGradient_DEFINED 10 #define SkRadialGradient_DEFINED
(...skipping 10 matching lines...) Expand all
21 virtual BitmapType asABitmap(SkBitmap* bitmap, 21 virtual BitmapType asABitmap(SkBitmap* bitmap,
22 SkMatrix* matrix, 22 SkMatrix* matrix,
23 TileMode* xy) const SK_OVERRIDE; 23 TileMode* xy) const SK_OVERRIDE;
24 virtual GradientType asAGradient(GradientInfo* info) const SK_OVERRIDE; 24 virtual GradientType asAGradient(GradientInfo* info) const SK_OVERRIDE;
25 virtual GrEffectRef* asNewEffect(GrContext* context, const SkPaint&) const S K_OVERRIDE; 25 virtual GrEffectRef* asNewEffect(GrContext* context, const SkPaint&) const S K_OVERRIDE;
26 26
27 SK_DEVELOPER_TO_STRING() 27 SK_DEVELOPER_TO_STRING()
28 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkRadialGradient) 28 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkRadialGradient)
29 29
30 protected: 30 protected:
31 SkRadialGradient(SkFlattenableReadBuffer& buffer); 31 SkRadialGradient(SkReadBuffer& buffer);
32 virtual void flatten(SkFlattenableWriteBuffer& buffer) const SK_OVERRIDE; 32 virtual void flatten(SkWriteBuffer& buffer) const SK_OVERRIDE;
33 33
34 private: 34 private:
35 typedef SkGradientShaderBase INHERITED; 35 typedef SkGradientShaderBase INHERITED;
36 const SkPoint fCenter; 36 const SkPoint fCenter;
37 const SkScalar fRadius; 37 const SkScalar fRadius;
38 }; 38 };
39 39
40 #endif 40 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698