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

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

Issue 2078623002: Support sRGB dsts in opt code (Closed) Base URL: https://skia.googlesource.com/skia.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
« src/opts/SkColorXform_opts.h ('K') | « src/opts/SkColorXform_opts.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_sse41 10 #define SK_OPTS_NS sk_sse41
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 srcover_srgb_srgb = sk_sse41::srcover_srgb_srgb; 225 srcover_srgb_srgb = sk_sse41::srcover_srgb_srgb;
226 226
227 #ifndef SK_SUPPORT_LEGACY_X86_BLITS 227 #ifndef SK_SUPPORT_LEGACY_X86_BLITS
228 blit_row_color32 = sk_sse41_new::blit_row_color32; 228 blit_row_color32 = sk_sse41_new::blit_row_color32;
229 blit_mask_d32_a8 = sk_sse41_new::blit_mask_d32_a8; 229 blit_mask_d32_a8 = sk_sse41_new::blit_mask_d32_a8;
230 #endif 230 #endif
231 blit_row_s32a_opaque = sk_sse41::blit_row_s32a_opaque; 231 blit_row_s32a_opaque = sk_sse41::blit_row_s32a_opaque;
232 232
233 color_xform_RGB1_srgb_to_2dot2 = sk_sse41::color_xform_RGB1_srgb_to_2do t2; 233 color_xform_RGB1_srgb_to_2dot2 = sk_sse41::color_xform_RGB1_srgb_to_2do t2;
234 color_xform_RGB1_2dot2_to_2dot2 = sk_sse41::color_xform_RGB1_2dot2_to_2d ot2; 234 color_xform_RGB1_2dot2_to_2dot2 = sk_sse41::color_xform_RGB1_2dot2_to_2d ot2;
235 color_xform_RGB1_srgb_to_srgb = sk_sse41::color_xform_RGB1_srgb_to_srg b;
236 color_xform_RGB1_2dot2_to_srgb = sk_sse41::color_xform_RGB1_2dot2_to_sr gb;
235 } 237 }
236 } 238 }
OLDNEW
« src/opts/SkColorXform_opts.h ('K') | « src/opts/SkColorXform_opts.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698