blob: 04aa9b175361ebc6adba366655dbf7261d3cc348 [file] [log] [blame]
mtklein8317a182015-07-30 07:30:16 -07001/*
2 * Copyright 2015 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef SkOpts_DEFINED
9#define SkOpts_DEFINED
10
mtkleinb6394742015-08-06 08:17:16 -070011#include "SkTextureCompressor.h"
mtklein8317a182015-07-30 07:30:16 -070012#include "SkTypes.h"
mtklein490b6152015-07-31 11:50:27 -070013#include "SkXfermode.h"
14
15struct ProcCoeff;
mtklein8317a182015-07-30 07:30:16 -070016
17namespace SkOpts {
18 // Call to replace pointers to portable functions with pointers to CPU-specific functions.
19 // Thread-safe and idempotent.
20 // Called by SkGraphics::Init(), and automatically #if SK_ALLOW_STATIC_GLOBAL_INITIALIZERS.
21 void Init();
22
mtkleinf684a782015-07-30 09:29:37 -070023 // Declare function pointers here...
24
25 // Returns a fast approximation of 1.0f/sqrtf(x).
26 extern float (*rsqrt)(float);
mtklein7eb09452015-07-31 10:46:50 -070027
28 // See SkUtils.h
29 extern void (*memset16)(uint16_t[], uint16_t, int);
30 extern void (*memset32)(uint32_t[], uint32_t, int);
mtklein490b6152015-07-31 11:50:27 -070031
32 // May return nullptr if we haven't specialized the given Mode.
33 extern SkXfermode* (*create_xfermode)(const ProcCoeff&, SkXfermode::Mode);
mtkleindce5ce42015-08-04 08:49:21 -070034
35 typedef void (*BoxBlur)(const SkPMColor*, int, SkPMColor*, int, int, int, int, int);
36 extern BoxBlur box_blur_xx, box_blur_xy, box_blur_yx;
mtkleind029ded2015-08-04 14:09:09 -070037
38 typedef void (*Morph)(const SkPMColor*, SkPMColor*, int, int, int, int, int);
39 extern Morph dilate_x, dilate_y, erode_x, erode_y;
mtkleinb6394742015-08-06 08:17:16 -070040
41 typedef bool (*TextureCompressor)(uint8_t* dst, const uint8_t* src,
42 int width, int height, size_t rowBytes);
43 extern TextureCompressor (*texture_compressor)(SkColorType, SkTextureCompressor::Format);
44 extern bool (*fill_block_dimensions)(SkTextureCompressor::Format, int* x, int* y);
45
mtklein49779832015-08-10 12:58:17 -070046 extern void (*blit_mask_d32_a8)(SkPMColor*, size_t, const SkAlpha*, size_t, SkColor, int, int);
mtklein2d141ba2015-08-18 09:43:28 -070047
48 // This function is an optimized version of SkColorCubeFilter::filterSpan
49 extern void (*color_cube_filter_span)(const SkPMColor[],
50 int,
51 SkPMColor[],
52 const int * [2],
53 const SkScalar * [2],
54 int,
55 const SkColor*);
mtklein8317a182015-07-30 07:30:16 -070056}
57
58#endif//SkOpts_DEFINED