1 | /* |
2 | * Copyright 2007 The Android Open Source Project |
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 SkColorMatrix_DEFINED |
9 | #define SkColorMatrix_DEFINED |
10 | |
11 | #include "include/core/SkTypes.h" |
12 | |
13 | #include <algorithm> |
14 | #include <array> |
15 | |
16 | class SK_API SkColorMatrix { |
17 | public: |
18 | constexpr SkColorMatrix() : SkColorMatrix(1, 0, 0, 0, 0, |
19 | 0, 1, 0, 0, 0, |
20 | 0, 0, 1, 0, 0, |
21 | 0, 0, 0, 1, 0) {} |
22 | |
23 | constexpr SkColorMatrix(float m00, float m01, float m02, float m03, float m04, |
24 | float m10, float m11, float m12, float m13, float m14, |
25 | float m20, float m21, float m22, float m23, float m24, |
26 | float m30, float m31, float m32, float m33, float m34) |
27 | : fMat { m00, m01, m02, m03, m04, |
28 | m10, m11, m12, m13, m14, |
29 | m20, m21, m22, m23, m24, |
30 | m30, m31, m32, m33, m34 } {} |
31 | |
32 | void setIdentity(); |
33 | void setScale(float rScale, float gScale, float bScale, float aScale = 1.0f); |
34 | |
35 | void postTranslate(float dr, float dg, float db, float da); |
36 | |
37 | void setConcat(const SkColorMatrix& a, const SkColorMatrix& b); |
38 | void preConcat(const SkColorMatrix& mat) { this->setConcat(*this, mat); } |
39 | void postConcat(const SkColorMatrix& mat) { this->setConcat(mat, *this); } |
40 | |
41 | void setSaturation(float sat); |
42 | |
43 | void setRowMajor(const float src[20]) { std::copy_n(src, 20, fMat.begin()); } |
44 | void getRowMajor(float dst[20]) const { std::copy_n(fMat.begin(), 20, dst); } |
45 | |
46 | private: |
47 | std::array<float, 20> fMat; |
48 | |
49 | friend class SkColorFilters; |
50 | }; |
51 | |
52 | #endif |
53 | |