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

Side by Side Diff: src/opts/SkXfermode_opts_SSE2.h

Issue 1230023011: Clean up dead xfermode opts code. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: remove guard Created 5 years, 5 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
« no previous file with comments | « src/core/SkXfermode.cpp ('k') | src/opts/SkXfermode_opts_SSE2.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * Copyright 2014 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8 #ifndef SkXfermode_opts_SSE2_DEFINED
9 #define SkXfermode_opts_SSE2_DEFINED
10
11 #include "SkTypes.h"
12 #include "SkXfermode_proccoeff.h"
13
14 class SK_API SkSSE2ProcCoeffXfermode : public SkProcCoeffXfermode {
15 public:
16 SkSSE2ProcCoeffXfermode(const ProcCoeff& rec, SkXfermode::Mode mode,
17 void* procSIMD)
18 : INHERITED(rec, mode), fProcSIMD(procSIMD) {}
19
20 void xfer32(SkPMColor dst[], const SkPMColor src[], int count,
21 const SkAlpha aa[]) const override;
22 void xfer16(uint16_t dst[], const SkPMColor src[],
23 int count, const SkAlpha aa[]) const override;
24
25 SK_TO_STRING_OVERRIDE()
26
27 private:
28 void* fProcSIMD;
29 typedef SkProcCoeffXfermode INHERITED;
30 };
31
32 SkProcCoeffXfermode* SkPlatformXfermodeFactory_impl_SSE2(const ProcCoeff& rec,
33 SkXfermode::Mode mode);
34
35 #endif // SkXfermode_opts_SSE2_DEFINED
OLDNEW
« no previous file with comments | « src/core/SkXfermode.cpp ('k') | src/opts/SkXfermode_opts_SSE2.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698