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

Side by Side Diff: src/core/SkPaintPriv.cpp

Issue 285443002: Remove SkLayerRasterizer legacy code. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: clean up gyp files Created 6 years, 7 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 2013 Google Inc. 2 * Copyright 2013 Google Inc.
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 #include "SkPaintPriv.h" 8 #include "SkPaintPriv.h"
9 9
10 #include "SkBitmap.h" 10 #include "SkBitmap.h"
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 * 83 *
84 * getTypeface() 84 * getTypeface()
85 * getAnnotation() 85 * getAnnotation()
86 * paint.getColorFilter() 86 * paint.getColorFilter()
87 * getXfermode() 87 * getXfermode()
88 * getPathEffect() 88 * getPathEffect()
89 * getMaskFilter() 89 * getMaskFilter()
90 */ 90 */
91 91
92 return paint.getShader() || 92 return paint.getShader() ||
93 #ifdef SK_SUPPORT_LEGACY_LAYERRASTERIZER_API
94 paint.getRasterizer() ||
95 #endif
96 paint.getLooper() || // needs to hide its addLayer... 93 paint.getLooper() || // needs to hide its addLayer...
97 paint.getImageFilter(); 94 paint.getImageFilter();
98 } 95 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698