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

Side by Side Diff: include/effects/SkTransparentShader.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 * Copyright 2006 The Android Open Source Project 2 * Copyright 2006 The Android Open Source Project
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 SkTransparentShader_DEFINED 8 #ifndef SkTransparentShader_DEFINED
9 #define SkTransparentShader_DEFINED 9 #define SkTransparentShader_DEFINED
10 10
(...skipping 11 matching lines...) Expand all
22 virtual void shadeSpan16(int x, int y, uint16_t span[], int count) SK_OVE RRIDE; 22 virtual void shadeSpan16(int x, int y, uint16_t span[], int count) SK_OVE RRIDE;
23 23
24 SK_DEVELOPER_TO_STRING() 24 SK_DEVELOPER_TO_STRING()
25 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkTransparentShader) 25 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkTransparentShader)
26 26
27 private: 27 private:
28 // these are a cache from the call to setContext() 28 // these are a cache from the call to setContext()
29 const SkBitmap* fDevice; 29 const SkBitmap* fDevice;
30 uint8_t fAlpha; 30 uint8_t fAlpha;
31 31
32 SkTransparentShader(SkFlattenableReadBuffer& buffer) : INHERITED(buffer) {} 32 SkTransparentShader(SkReadBuffer& buffer) : INHERITED(buffer) {}
33 33
34 typedef SkShader INHERITED; 34 typedef SkShader INHERITED;
35 }; 35 };
36 36
37 #endif 37 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698