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

Side by Side Diff: include/effects/SkTransparentShader.h

Issue 25430005: Fix for potential typedef issue Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « include/effects/SkTestImageFilters.h ('k') | include/effects/SkXfermodeImageFilter.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 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
11 #include "SkShader.h" 11 #include "SkShader.h"
12 12
13 class SK_API SkTransparentShader : public SkShader { 13 class SK_API SkTransparentShader : public SkShader {
14 typedef SkShader INHERITED;
15
14 public: 16 public:
15 SkTransparentShader() {} 17 SkTransparentShader() {}
16 18
17 virtual uint32_t getFlags() SK_OVERRIDE; 19 virtual uint32_t getFlags() SK_OVERRIDE;
18 virtual bool setContext(const SkBitmap& device, 20 virtual bool setContext(const SkBitmap& device,
19 const SkPaint& paint, 21 const SkPaint& paint,
20 const SkMatrix& matrix) SK_OVERRIDE; 22 const SkMatrix& matrix) SK_OVERRIDE;
21 virtual void shadeSpan(int x, int y, SkPMColor[], int count) SK_OVERRIDE; 23 virtual void shadeSpan(int x, int y, SkPMColor[], int count) SK_OVERRIDE;
22 virtual void shadeSpan16(int x, int y, uint16_t span[], int count) SK_OVE RRIDE; 24 virtual void shadeSpan16(int x, int y, uint16_t span[], int count) SK_OVE RRIDE;
23 25
24 SK_DEVELOPER_TO_STRING() 26 SK_DEVELOPER_TO_STRING()
25 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkTransparentShader) 27 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkTransparentShader)
26 28
27 private: 29 private:
28 // these are a cache from the call to setContext() 30 // these are a cache from the call to setContext()
29 const SkBitmap* fDevice; 31 const SkBitmap* fDevice;
30 uint8_t fAlpha; 32 uint8_t fAlpha;
31 33
32 SkTransparentShader(SkFlattenableReadBuffer& buffer) : INHERITED(buffer) {} 34 SkTransparentShader(SkFlattenableReadBuffer& buffer) : INHERITED(buffer) {}
33
34 typedef SkShader INHERITED;
35 }; 35 };
36 36
37 #endif 37 #endif
OLDNEW
« no previous file with comments | « include/effects/SkTestImageFilters.h ('k') | include/effects/SkXfermodeImageFilter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698