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

Side by Side Diff: include/core/SkEmptyShader.h

Issue 207683004: Extract most of the mutable state of SkShader into a separate Context object. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: scroggo's comments Created 6 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
OLDNEW
1 1
2 /* 2 /*
3 * Copyright 2011 Google Inc. 3 * Copyright 2011 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 9
10 10
11 #ifndef SkEmptyShader_DEFINED 11 #ifndef SkEmptyShader_DEFINED
12 #define SkEmptyShader_DEFINED 12 #define SkEmptyShader_DEFINED
13 13
14 #include "SkShader.h" 14 #include "SkShader.h"
15 15
16 /** 16 /**
17 * \class SkEmptyShader 17 * \class SkEmptyShader
18 * A Shader that always draws nothing. Its setContext always returns false, 18 * A Shader that always draws nothing. Its createContext always returns NULL.
19 * so it never expects that its shadeSpan() methods will get called.
20 */ 19 */
21 class SK_API SkEmptyShader : public SkShader { 20 class SK_API SkEmptyShader : public SkShader {
22 public: 21 public:
23 SkEmptyShader() {} 22 SkEmptyShader() {}
24 23
25 virtual uint32_t getFlags() SK_OVERRIDE; 24 virtual size_t contextSize() const SK_OVERRIDE {
26 virtual uint8_t getSpan16Alpha() const SK_OVERRIDE; 25 // Even though we never create a shader for this class we have to return a value of at least
scroggo 2014/03/26 23:13:09 I might say // Even though createContext returns
Dominik Grewe 2014/03/27 14:27:20 Agreed, that's better.
27 virtual bool setContext(const SkBitmap&, const SkPaint&, 26 // sizeof(SkShader::Context) to satisfy SkSmallAllocator.
28 const SkMatrix&) SK_OVERRIDE; 27 return sizeof(SkShader::Context);
29 virtual void shadeSpan(int x, int y, SkPMColor span[], int count) SK_OVERRID E; 28 }
30 virtual void shadeSpan16(int x, int y, uint16_t span[], int count) SK_OVERRI DE; 29
31 virtual void shadeSpanAlpha(int x, int y, uint8_t alpha[], int count) SK_OVE RRIDE; 30 virtual SkShader::Context* createContext(const SkBitmap&, const SkPaint&,
31 const SkMatrix&, void*) const SK_OV ERRIDE {
32 // validContext returns false.
33 return NULL;
34 }
32 35
33 SK_DEVELOPER_TO_STRING() 36 SK_DEVELOPER_TO_STRING()
34 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkEmptyShader) 37 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkEmptyShader)
35 38
36 protected: 39 protected:
37 SkEmptyShader(SkReadBuffer& buffer) : INHERITED(buffer) {} 40 SkEmptyShader(SkReadBuffer& buffer) : INHERITED(buffer) {}
38 41
42 virtual bool validContext(const SkBitmap&, const SkPaint&,
43 const SkMatrix&) SK_OVERRIDE { return false; }
39 private: 44 private:
40 typedef SkShader INHERITED; 45 typedef SkShader INHERITED;
41 }; 46 };
42 47
43 #endif 48 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698