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

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: Fix android build + implement serialization 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 | « gyp/opts.gyp ('k') | src/core/SkXfermode.cpp » ('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 /* 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 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 268
269 protected: 269 protected:
270 SkProcXfermode(SkFlattenableReadBuffer&); 270 SkProcXfermode(SkFlattenableReadBuffer&);
271 virtual void flatten(SkFlattenableWriteBuffer&) const SK_OVERRIDE; 271 virtual void flatten(SkFlattenableWriteBuffer&) const SK_OVERRIDE;
272 272
273 // allow subclasses to update this after we unflatten 273 // allow subclasses to update this after we unflatten
274 void setProc(SkXfermodeProc proc) { 274 void setProc(SkXfermodeProc proc) {
275 fProc = proc; 275 fProc = proc;
276 } 276 }
277 277
278 SkXfermodeProc getProc() const {
279 return fProc;
280 }
281
278 private: 282 private:
279 SkXfermodeProc fProc; 283 SkXfermodeProc fProc;
280 284
281 typedef SkXfermode INHERITED; 285 typedef SkXfermode INHERITED;
282 }; 286 };
283 287
284 #endif 288 #endif
OLDNEW
« no previous file with comments | « gyp/opts.gyp ('k') | src/core/SkXfermode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698