diff options
author | senorblanco@chromium.org <senorblanco@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-17 22:03:28 +0000 |
---|---|---|
committer | senorblanco@chromium.org <senorblanco@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-17 22:03:28 +0000 |
commit | 794d35055c6a53510aba7190c6b0b9be04e774c8 (patch) | |
tree | f52223c5aeedef79def881ec02d859eae75f91fa /skia/ext/convolver_mips_dspr2.h | |
parent | f8c6cc8048819b4921ea99a723205b0ece36f92f (diff) | |
download | chromium_src-794d35055c6a53510aba7190c6b0b9be04e774c8.zip chromium_src-794d35055c6a53510aba7190c6b0b9be04e774c8.tar.gz chromium_src-794d35055c6a53510aba7190c6b0b9be04e774c8.tar.bz2 |
Revert r200891, "Added MIPS DSPr2 optimization for BGRAConvolve2D routine."
This reverts commit 7d4175c20e5c3608b9b918499aedfc4a6006932d.
TBR=
Review URL: https://codereview.chromium.org/15352002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@200898 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'skia/ext/convolver_mips_dspr2.h')
-rw-r--r-- | skia/ext/convolver_mips_dspr2.h | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/skia/ext/convolver_mips_dspr2.h b/skia/ext/convolver_mips_dspr2.h deleted file mode 100644 index 8083cd5..0000000 --- a/skia/ext/convolver_mips_dspr2.h +++ /dev/null @@ -1,25 +0,0 @@ -// Copyright (c) 2012 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#ifndef SKIA_EXT_CONVOLVER_MIPS_DSPR2_H_ -#define SKIA_EXT_CONVOLVER_MIPS_DSPR2_H_ - -#include "skia/ext/convolver.h" - -namespace skia { - -void ConvolveVertically_mips_dspr2(const ConvolutionFilter1D::Fixed* filter_val, - int filter_length, - unsigned char* const* source_data_rows, - int pixel_width, - unsigned char* out_row, - bool has_alpha); - -void ConvolveHorizontally_mips_dspr2(const unsigned char* src_data, - const ConvolutionFilter1D& filter, - unsigned char* out_row, - bool has_alpha); -} // namespace skia - -#endif // SKIA_EXT_CONVOLVER_MIPS_DSPR2_H_ |