blob: 50de9c45e2b0c936f76fd9ab526fb8d10d05845e [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
Mike Kleinbaaf8ad2016-09-29 09:04:15 -040011#include "SkRasterPipeline.h"
mtkleinb6394742015-08-06 08:17:16 -070012#include "SkTextureCompressor.h"
mtklein8317a182015-07-30 07:30:16 -070013#include "SkTypes.h"
mtklein490b6152015-07-31 11:50:27 -070014#include "SkXfermode.h"
15
16struct ProcCoeff;
mtklein8317a182015-07-30 07:30:16 -070017
18namespace SkOpts {
19 // Call to replace pointers to portable functions with pointers to CPU-specific functions.
20 // Thread-safe and idempotent.
mtklein05db63b2016-04-19 12:42:24 -070021 // Called by SkGraphics::Init().
mtklein8317a182015-07-30 07:30:16 -070022 void Init();
23
mtkleinf684a782015-07-30 09:29:37 -070024 // Declare function pointers here...
25
mtklein490b6152015-07-31 11:50:27 -070026 // May return nullptr if we haven't specialized the given Mode.
27 extern SkXfermode* (*create_xfermode)(const ProcCoeff&, SkXfermode::Mode);
mtkleindce5ce42015-08-04 08:49:21 -070028
senorblanco29a440d2015-11-02 12:55:47 -080029 typedef void (*BoxBlur)(const SkPMColor*, int, const SkIRect& srcBounds, SkPMColor*, int, int, int, int, int);
mtkleindce5ce42015-08-04 08:49:21 -070030 extern BoxBlur box_blur_xx, box_blur_xy, box_blur_yx;
mtkleind029ded2015-08-04 14:09:09 -070031
32 typedef void (*Morph)(const SkPMColor*, SkPMColor*, int, int, int, int, int);
33 extern Morph dilate_x, dilate_y, erode_x, erode_y;
mtkleinb6394742015-08-06 08:17:16 -070034
35 typedef bool (*TextureCompressor)(uint8_t* dst, const uint8_t* src,
36 int width, int height, size_t rowBytes);
37 extern TextureCompressor (*texture_compressor)(SkColorType, SkTextureCompressor::Format);
38 extern bool (*fill_block_dimensions)(SkTextureCompressor::Format, int* x, int* y);
39
mtklein49779832015-08-10 12:58:17 -070040 extern void (*blit_mask_d32_a8)(SkPMColor*, size_t, const SkAlpha*, size_t, SkColor, int, int);
mtklein4a37d082015-09-10 10:38:02 -070041 extern void (*blit_row_color32)(SkPMColor*, const SkPMColor*, int, SkPMColor);
mtkleinb4a7dc92016-03-23 06:29:12 -070042 extern void (*blit_row_s32a_opaque)(SkPMColor*, const SkPMColor*, int, U8CPU);
mtklein2d141ba2015-08-18 09:43:28 -070043
44 // This function is an optimized version of SkColorCubeFilter::filterSpan
45 extern void (*color_cube_filter_span)(const SkPMColor[],
46 int,
47 SkPMColor[],
48 const int * [2],
49 const SkScalar * [2],
50 int,
51 const SkColor*);
mtklein4e8a09d2015-09-10 11:18:31 -070052
mtklein8bf7b792016-01-22 07:42:53 -080053 // Swizzle input into some sort of 8888 pixel, {premul,unpremul} x {rgba,bgra}.
54 typedef void (*Swizzle_8888)(uint32_t*, const void*, int);
msarettc5c322d2016-02-08 13:26:25 -080055 extern Swizzle_8888 RGBA_to_BGRA, // i.e. just swap RB
56 RGBA_to_rgbA, // i.e. just premultiply
57 RGBA_to_bgrA, // i.e. swap RB and premultiply
58 RGB_to_RGB1, // i.e. insert an opaque alpha
59 RGB_to_BGR1, // i.e. swap RB and insert an opaque alpha
60 gray_to_RGB1, // i.e. expand to color channels + an opaque alpha
61 grayA_to_RGBA, // i.e. expand to color channels
62 grayA_to_rgbA, // i.e. expand to color channels and premultiply
63 inverted_CMYK_to_RGB1, // i.e. convert color space
64 inverted_CMYK_to_BGR1; // i.e. convert color space
mtkleina525cb12016-02-09 08:18:10 -080065
mtkleinc5091b52016-05-02 11:48:42 -070066 // Blend ndst src pixels over dst, where both src and dst point to sRGB pixels (RGBA or BGRA).
67 // If nsrc < ndst, we loop over src to create a pattern.
68 extern void (*srcover_srgb_srgb)(uint32_t* dst, const uint32_t* src, int ndst, int nsrc);
mtklein4e976072016-08-08 09:06:27 -070069
70 // The fastest high quality 32-bit hash we can provide on this platform.
71 extern uint32_t (*hash_fn)(const void*, size_t, uint32_t seed);
72 static inline uint32_t hash(const void* data, size_t bytes, uint32_t seed=0) {
73 return hash_fn(data, bytes, seed);
74 }
Mike Kleinbaaf8ad2016-09-29 09:04:15 -040075
Mike Kleinfa9f2412016-09-29 13:40:01 -040076 extern SkRasterPipeline::Fn stages_4 [SkRasterPipeline::kNumStockStages],
77 stages_1_3[SkRasterPipeline::kNumStockStages];
mtklein8317a182015-07-30 07:30:16 -070078}
79
80#endif//SkOpts_DEFINED