1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/gfx/skia/trunk/src/opts/SkBitmapProcState_opts_SSE2.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,30 @@ 1.4 + 1.5 +/* 1.6 + * Copyright 2009 The Android Open Source Project 1.7 + * 1.8 + * Use of this source code is governed by a BSD-style license that can be 1.9 + * found in the LICENSE file. 1.10 + */ 1.11 + 1.12 + 1.13 +#include "SkBitmapProcState.h" 1.14 + 1.15 +void S32_opaque_D32_filter_DX_SSE2(const SkBitmapProcState& s, 1.16 + const uint32_t* xy, 1.17 + int count, uint32_t* colors); 1.18 +void S32_alpha_D32_filter_DX_SSE2(const SkBitmapProcState& s, 1.19 + const uint32_t* xy, 1.20 + int count, uint32_t* colors); 1.21 +void Color32_SSE2(SkPMColor dst[], const SkPMColor src[], int count, 1.22 + SkPMColor color); 1.23 +void ClampX_ClampY_filter_scale_SSE2(const SkBitmapProcState& s, uint32_t xy[], 1.24 + int count, int x, int y); 1.25 +void ClampX_ClampY_nofilter_scale_SSE2(const SkBitmapProcState& s, 1.26 + uint32_t xy[], int count, int x, int y); 1.27 +void ClampX_ClampY_filter_affine_SSE2(const SkBitmapProcState& s, 1.28 + uint32_t xy[], int count, int x, int y); 1.29 +void ClampX_ClampY_nofilter_affine_SSE2(const SkBitmapProcState& s, 1.30 + uint32_t xy[], int count, int x, int y); 1.31 +void S32_D16_filter_DX_SSE2(const SkBitmapProcState& s, 1.32 + const uint32_t* xy, 1.33 + int count, uint16_t* colors);