Chromium Code Reviews

Side by Side Diff: include/core/SkComposeShader.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.
Jump to:
View unified diff |
OLDNEW
1 1
2 /* 2 /*
3 * Copyright 2006 The Android Open Source Project 3 * Copyright 2006 The Android Open Source Project
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 9
10 #ifndef SkComposeShader_DEFINED 10 #ifndef SkComposeShader_DEFINED
(...skipping 25 matching lines...)
36 36
37 virtual bool setContext(const SkBitmap&, const SkPaint&, 37 virtual bool setContext(const SkBitmap&, const SkPaint&,
38 const SkMatrix&) SK_OVERRIDE; 38 const SkMatrix&) SK_OVERRIDE;
39 virtual void endContext() SK_OVERRIDE; 39 virtual void endContext() SK_OVERRIDE;
40 virtual void shadeSpan(int x, int y, SkPMColor[], int count) SK_OVERRIDE; 40 virtual void shadeSpan(int x, int y, SkPMColor[], int count) SK_OVERRIDE;
41 41
42 SK_DEVELOPER_TO_STRING() 42 SK_DEVELOPER_TO_STRING()
43 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkComposeShader) 43 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkComposeShader)
44 44
45 protected: 45 protected:
46 SkComposeShader(SkFlattenableReadBuffer& ); 46 SkComposeShader(SkReadBuffer& );
47 virtual void flatten(SkFlattenableWriteBuffer&) const SK_OVERRIDE; 47 virtual void flatten(SkWriteBuffer&) const SK_OVERRIDE;
48 48
49 private: 49 private:
50 50
51 SkShader* fShaderA; 51 SkShader* fShaderA;
52 SkShader* fShaderB; 52 SkShader* fShaderB;
53 SkXfermode* fMode; 53 SkXfermode* fMode;
54 54
55 typedef SkShader INHERITED; 55 typedef SkShader INHERITED;
56 }; 56 };
57 57
58 #endif 58 #endif
OLDNEW

Powered by Google App Engine