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

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

Issue 768183002: Revert of Remove SK_SUPPORT_LEGACY_DEEPFLATTENING. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years 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
« no previous file with comments | « include/effects/SkTileImageFilter.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
(...skipping 23 matching lines...) Expand all
34 SK_TO_STRING_OVERRIDE() 34 SK_TO_STRING_OVERRIDE()
35 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkTransparentShader) 35 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkTransparentShader)
36 36
37 protected: 37 protected:
38 virtual Context* onCreateContext(const ContextRec&, void* storage) const SK_ OVERRIDE; 38 virtual Context* onCreateContext(const ContextRec&, void* storage) const SK_ OVERRIDE;
39 39
40 // we don't need to flatten anything at all 40 // we don't need to flatten anything at all
41 virtual void flatten(SkWriteBuffer&) const SK_OVERRIDE {} 41 virtual void flatten(SkWriteBuffer&) const SK_OVERRIDE {}
42 42
43 private: 43 private:
44 #ifdef SK_SUPPORT_LEGACY_DEEPFLATTENING
45 SkTransparentShader(SkReadBuffer& buffer) : INHERITED(buffer) {}
46 #endif
47
44 typedef SkShader INHERITED; 48 typedef SkShader INHERITED;
45 }; 49 };
46 50
47 #endif 51 #endif
OLDNEW
« no previous file with comments | « include/effects/SkTileImageFilter.h ('k') | include/effects/SkXfermodeImageFilter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698