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

Side by Side Diff: src/opts/SkOpts_neon.cpp

Issue 1820313002: Port S32A_opaque blit row to SkOpts. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fmt Created 4 years, 9 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
OLDNEW
1 /* 1 /*
2 * Copyright 2015 Google Inc. 2 * Copyright 2015 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #include "SkOpts.h" 8 #include "SkOpts.h"
9 9
10 #define SK_OPTS_NS sk_neon 10 #define SK_OPTS_NS sk_neon
(...skipping 18 matching lines...) Expand all
29 dilate_x = sk_neon::dilate_x; 29 dilate_x = sk_neon::dilate_x;
30 dilate_y = sk_neon::dilate_y; 30 dilate_y = sk_neon::dilate_y;
31 erode_x = sk_neon::erode_x; 31 erode_x = sk_neon::erode_x;
32 erode_y = sk_neon::erode_y; 32 erode_y = sk_neon::erode_y;
33 33
34 texture_compressor = sk_neon::texture_compressor; 34 texture_compressor = sk_neon::texture_compressor;
35 fill_block_dimensions = sk_neon::fill_block_dimensions; 35 fill_block_dimensions = sk_neon::fill_block_dimensions;
36 36
37 blit_mask_d32_a8 = sk_neon::blit_mask_d32_a8; 37 blit_mask_d32_a8 = sk_neon::blit_mask_d32_a8;
38 38
39 blit_row_color32 = sk_neon::blit_row_color32; 39 blit_row_color32 = sk_neon::blit_row_color32;
40 blit_row_s32a_opaque = sk_neon::blit_row_s32a_opaque;
40 41
41 color_cube_filter_span = sk_neon::color_cube_filter_span; 42 color_cube_filter_span = sk_neon::color_cube_filter_span;
42 43
43 matrix_translate = sk_neon::matrix_translate; 44 matrix_translate = sk_neon::matrix_translate;
44 matrix_scale_translate = sk_neon::matrix_scale_translate; 45 matrix_scale_translate = sk_neon::matrix_scale_translate;
45 matrix_affine = sk_neon::matrix_affine; 46 matrix_affine = sk_neon::matrix_affine;
46 47
47 RGBA_to_BGRA = sk_neon::RGBA_to_BGRA; 48 RGBA_to_BGRA = sk_neon::RGBA_to_BGRA;
48 RGBA_to_rgbA = sk_neon::RGBA_to_rgbA; 49 RGBA_to_rgbA = sk_neon::RGBA_to_rgbA;
49 RGBA_to_bgrA = sk_neon::RGBA_to_bgrA; 50 RGBA_to_bgrA = sk_neon::RGBA_to_bgrA;
50 RGB_to_RGB1 = sk_neon::RGB_to_RGB1; 51 RGB_to_RGB1 = sk_neon::RGB_to_RGB1;
51 RGB_to_BGR1 = sk_neon::RGB_to_BGR1; 52 RGB_to_BGR1 = sk_neon::RGB_to_BGR1;
52 gray_to_RGB1 = sk_neon::gray_to_RGB1; 53 gray_to_RGB1 = sk_neon::gray_to_RGB1;
53 grayA_to_RGBA = sk_neon::grayA_to_RGBA; 54 grayA_to_RGBA = sk_neon::grayA_to_RGBA;
54 grayA_to_rgbA = sk_neon::grayA_to_rgbA; 55 grayA_to_rgbA = sk_neon::grayA_to_rgbA;
55 inverted_CMYK_to_RGB1 = sk_neon::inverted_CMYK_to_RGB1; 56 inverted_CMYK_to_RGB1 = sk_neon::inverted_CMYK_to_RGB1;
56 inverted_CMYK_to_BGR1 = sk_neon::inverted_CMYK_to_BGR1; 57 inverted_CMYK_to_BGR1 = sk_neon::inverted_CMYK_to_BGR1;
57 } 58 }
58 } 59 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698