2008-12-17 15:59:43 +00:00
|
|
|
/*
|
2011-07-28 14:26:00 +00:00
|
|
|
* Copyright 2007 The Android Open Source Project
|
2008-12-17 15:59:43 +00:00
|
|
|
*
|
2011-07-28 14:26:00 +00:00
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
2008-12-17 15:59:43 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SkColorMatrix_DEFINED
|
|
|
|
#define SkColorMatrix_DEFINED
|
|
|
|
|
2021-10-20 14:15:46 +00:00
|
|
|
#include "include/core/SkImageInfo.h"
|
2019-11-01 21:10:28 +00:00
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
#include <array>
|
2008-12-17 15:59:43 +00:00
|
|
|
|
2012-10-12 14:41:39 +00:00
|
|
|
class SK_API SkColorMatrix {
|
2019-04-22 02:17:03 +00:00
|
|
|
public:
|
2019-11-01 21:10:28 +00:00
|
|
|
constexpr SkColorMatrix() : SkColorMatrix(1, 0, 0, 0, 0,
|
|
|
|
0, 1, 0, 0, 0,
|
|
|
|
0, 0, 1, 0, 0,
|
|
|
|
0, 0, 0, 1, 0) {}
|
|
|
|
|
|
|
|
constexpr SkColorMatrix(float m00, float m01, float m02, float m03, float m04,
|
|
|
|
float m10, float m11, float m12, float m13, float m14,
|
|
|
|
float m20, float m21, float m22, float m23, float m24,
|
|
|
|
float m30, float m31, float m32, float m33, float m34)
|
|
|
|
: fMat { m00, m01, m02, m03, m04,
|
|
|
|
m10, m11, m12, m13, m14,
|
|
|
|
m20, m21, m22, m23, m24,
|
|
|
|
m30, m31, m32, m33, m34 } {}
|
|
|
|
|
2021-10-20 14:15:46 +00:00
|
|
|
static SkColorMatrix RGBtoYUV(SkYUVColorSpace);
|
|
|
|
static SkColorMatrix YUVtoRGB(SkYUVColorSpace);
|
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
void setIdentity();
|
2019-04-23 20:31:13 +00:00
|
|
|
void setScale(float rScale, float gScale, float bScale, float aScale = 1.0f);
|
2008-12-17 15:59:43 +00:00
|
|
|
|
2019-04-24 12:13:10 +00:00
|
|
|
void postTranslate(float dr, float dg, float db, float da);
|
2008-12-17 15:59:43 +00:00
|
|
|
|
|
|
|
void setConcat(const SkColorMatrix& a, const SkColorMatrix& b);
|
|
|
|
void preConcat(const SkColorMatrix& mat) { this->setConcat(*this, mat); }
|
|
|
|
void postConcat(const SkColorMatrix& mat) { this->setConcat(mat, *this); }
|
|
|
|
|
2019-04-23 20:31:13 +00:00
|
|
|
void setSaturation(float sat);
|
2015-03-02 21:46:03 +00:00
|
|
|
|
2019-11-01 21:10:28 +00:00
|
|
|
void setRowMajor(const float src[20]) { std::copy_n(src, 20, fMat.begin()); }
|
|
|
|
void getRowMajor(float dst[20]) const { std::copy_n(fMat.begin(), 20, dst); }
|
2019-05-28 20:11:03 +00:00
|
|
|
|
2019-04-22 02:17:03 +00:00
|
|
|
private:
|
2019-11-01 21:10:28 +00:00
|
|
|
std::array<float, 20> fMat;
|
2019-04-24 12:13:10 +00:00
|
|
|
|
2019-04-22 02:17:03 +00:00
|
|
|
friend class SkColorFilters;
|
2008-12-17 15:59:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|