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

Unified Diff: src/opts/SkBitmapFilter_opts_SSE2.h

Issue 2500113004: Port convolve functions to SkOpts (Closed)
Patch Set: Format Created 4 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: src/opts/SkBitmapFilter_opts_SSE2.h
diff --git a/src/opts/SkBitmapFilter_opts_SSE2.h b/src/opts/SkBitmapFilter_opts_SSE2.h
deleted file mode 100644
index 46ab5c8ae716be9934478adeffadb5853cf4344b..0000000000000000000000000000000000000000
--- a/src/opts/SkBitmapFilter_opts_SSE2.h
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * Copyright 2013 Google Inc.
- *
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-#ifndef SkBitmapFilter_opts_sse2_DEFINED
-#define SkBitmapFilter_opts_sse2_DEFINED
-
-#include "SkBitmapProcState.h"
-#include "SkConvolver.h"
-
-void convolveVertically_SSE2(const SkConvolutionFilter1D::ConvolutionFixed* filter_values,
- int filter_length,
- unsigned char* const* source_data_rows,
- int pixel_width,
- unsigned char* out_row,
- bool has_alpha);
-void convolve4RowsHorizontally_SSE2(const unsigned char* src_data[4],
- const SkConvolutionFilter1D& filter,
- unsigned char* out_row[4],
- size_t outRowBytes);
-void convolveHorizontally_SSE2(const unsigned char* src_data,
- const SkConvolutionFilter1D& filter,
- unsigned char* out_row,
- bool has_alpha);
-void applySIMDPadding_SSE2(SkConvolutionFilter1D* filter);
-
-#endif

Powered by Google App Engine
This is Rietveld 408576698