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

Side by Side Diff: skia/ext/convolver_mips_dspr2.h

Issue 2011713003: Roll skia to 8cc209111876b7c78b5ec577c9221d8ed5e21024 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 4 years, 6 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 | « skia/ext/convolver_SSE2.cc ('k') | skia/ext/convolver_mips_dspr2.cc » ('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 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef SKIA_EXT_CONVOLVER_MIPS_DSPR2_H_
6 #define SKIA_EXT_CONVOLVER_MIPS_DSPR2_H_
7
8 #include "skia/ext/convolver.h"
9
10 namespace skia {
11
12 void ConvolveVertically_mips_dspr2(const ConvolutionFilter1D::Fixed* filter_val,
13 int filter_length,
14 unsigned char* const* source_data_rows,
15 int pixel_width,
16 unsigned char* out_row,
17 bool has_alpha);
18
19 void ConvolveHorizontally_mips_dspr2(const unsigned char* src_data,
20 const ConvolutionFilter1D& filter,
21 unsigned char* out_row,
22 bool has_alpha);
23 } // namespace skia
24
25 #endif // SKIA_EXT_CONVOLVER_MIPS_DSPR2_H_
OLDNEW
« no previous file with comments | « skia/ext/convolver_SSE2.cc ('k') | skia/ext/convolver_mips_dspr2.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698