gfx/skia/trunk/src/opts/SkBlitRow_opts_SSE2.h

Sat, 03 Jan 2015 20:18:00 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 03 Jan 2015 20:18:00 +0100
branch
TOR_BUG_3246
changeset 7
129ffea94266
permissions
-rw-r--r--

Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.

michael@0 1
michael@0 2 /*
michael@0 3 * Copyright 2009 The Android Open Source Project
michael@0 4 *
michael@0 5 * Use of this source code is governed by a BSD-style license that can be
michael@0 6 * found in the LICENSE file.
michael@0 7 */
michael@0 8
michael@0 9
michael@0 10 #include "SkBlitRow.h"
michael@0 11
michael@0 12 void S32_Blend_BlitRow32_SSE2(SkPMColor* SK_RESTRICT dst,
michael@0 13 const SkPMColor* SK_RESTRICT src,
michael@0 14 int count, U8CPU alpha);
michael@0 15
michael@0 16 void S32A_Opaque_BlitRow32_SSE2(SkPMColor* SK_RESTRICT dst,
michael@0 17 const SkPMColor* SK_RESTRICT src,
michael@0 18 int count, U8CPU alpha);
michael@0 19
michael@0 20 void S32A_Blend_BlitRow32_SSE2(SkPMColor* SK_RESTRICT dst,
michael@0 21 const SkPMColor* SK_RESTRICT src,
michael@0 22 int count, U8CPU alpha);
michael@0 23 void SkARGB32_A8_BlitMask_SSE2(void* device, size_t dstRB, const void* mask,
michael@0 24 size_t maskRB, SkColor color,
michael@0 25 int width, int height);
michael@0 26
michael@0 27 void SkBlitLCD16Row_SSE2(SkPMColor dst[], const uint16_t src[],
michael@0 28 SkColor color, int width, SkPMColor);
michael@0 29 void SkBlitLCD16OpaqueRow_SSE2(SkPMColor dst[], const uint16_t src[],
michael@0 30 SkColor color, int width, SkPMColor opaqueDst);
michael@0 31
michael@0 32 void S32_D565_Opaque_SSE2(uint16_t* SK_RESTRICT dst,
michael@0 33 const SkPMColor* SK_RESTRICT src, int count,
michael@0 34 U8CPU alpha, int /*x*/, int /*y*/);
michael@0 35 void S32A_D565_Opaque_SSE2(uint16_t* SK_RESTRICT dst,
michael@0 36 const SkPMColor* SK_RESTRICT src,
michael@0 37 int count, U8CPU alpha, int /*x*/, int /*y*/);
michael@0 38 void S32_D565_Opaque_Dither_SSE2(uint16_t* SK_RESTRICT dst,
michael@0 39 const SkPMColor* SK_RESTRICT src,
michael@0 40 int count, U8CPU alpha, int x, int y);
michael@0 41 void S32A_D565_Opaque_Dither_SSE2(uint16_t* SK_RESTRICT dst,
michael@0 42 const SkPMColor* SK_RESTRICT src,
michael@0 43 int count, U8CPU alpha, int x, int y);

mercurial