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
|
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/core/SkTypes.h"
|
2019-04-23 20:31:13 +00:00
|
|
|
#include <memory.h>
|
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:
|
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-05-23 19:30:07 +00:00
|
|
|
void setRowMajor(const float src[20]) {
|
|
|
|
memcpy(fMat, src, sizeof(fMat));
|
|
|
|
}
|
|
|
|
|
|
|
|
void getRowMajor(float dst[20]) const {
|
|
|
|
memcpy(dst, fMat, sizeof(fMat));
|
|
|
|
}
|
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
enum Axis {
|
|
|
|
kR_Axis = 0,
|
|
|
|
kG_Axis = 1,
|
|
|
|
kB_Axis = 2
|
|
|
|
};
|
2019-04-23 20:31:13 +00:00
|
|
|
void setRotate(Axis, float degrees);
|
|
|
|
void setSinCos(Axis, float sine, float cosine);
|
|
|
|
void preRotate(Axis, float degrees);
|
|
|
|
void postRotate(Axis, float degrees);
|
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);
|
2008-12-17 15:59:43 +00:00
|
|
|
void setRGB2YUV();
|
|
|
|
void setYUV2RGB();
|
2012-10-17 13:36:14 +00:00
|
|
|
|
|
|
|
bool operator==(const SkColorMatrix& other) const {
|
|
|
|
return 0 == memcmp(fMat, other.fMat, sizeof(fMat));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator!=(const SkColorMatrix& other) const { return !((*this) == other); }
|
2015-03-02 21:46:03 +00:00
|
|
|
|
2019-04-22 02:17:03 +00:00
|
|
|
private:
|
2019-04-24 12:13:10 +00:00
|
|
|
float fMat[20];
|
|
|
|
|
2019-04-22 02:17:03 +00:00
|
|
|
friend class SkColorFilters;
|
2008-12-17 15:59:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|