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

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

Issue 23644006: ARM Skia NEON patches - 28 - Xfermode: SIMD modeprocs (Closed) 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
OLDNEW
1 1
2 /* 2 /*
3 * Copyright 2006 The Android Open Source Project 3 * Copyright 2006 The Android Open Source Project
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 #ifndef SkXfermode_DEFINED 10 #ifndef SkXfermode_DEFINED
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 264
265 protected: 265 protected:
266 SkProcXfermode(SkFlattenableReadBuffer&); 266 SkProcXfermode(SkFlattenableReadBuffer&);
267 virtual void flatten(SkFlattenableWriteBuffer&) const SK_OVERRIDE; 267 virtual void flatten(SkFlattenableWriteBuffer&) const SK_OVERRIDE;
268 268
269 // allow subclasses to update this after we unflatten 269 // allow subclasses to update this after we unflatten
270 void setProc(SkXfermodeProc proc) { 270 void setProc(SkXfermodeProc proc) {
271 fProc = proc; 271 fProc = proc;
272 } 272 }
273 273
274 private:
275 SkXfermodeProc fProc; 274 SkXfermodeProc fProc;
reed1 2013/10/07 16:24:31 I presume your subclasses need access to fProc. Is
kevin.petit.not.used.account 2013/10/07 17:18:51 Done.
276 275
276 private:
277 typedef SkXfermode INHERITED; 277 typedef SkXfermode INHERITED;
278 }; 278 };
279 279
280 #endif 280 #endif
OLDNEW
« no previous file with comments | « gyp/opts.gyp ('k') | src/core/SkXfermode.cpp » ('j') | src/opts/SkXfermode_opts_arm.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698