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
|
|
|
|
|
|
|
|
#include "SkScalar.h"
|
|
|
|
|
2012-10-12 14:41:39 +00:00
|
|
|
class SK_API SkColorMatrix {
|
2008-12-17 15:59:43 +00:00
|
|
|
public:
|
|
|
|
SkScalar fMat[20];
|
2012-08-23 18:09:54 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
void setIdentity();
|
|
|
|
void setScale(SkScalar rScale, SkScalar gScale, SkScalar bScale,
|
|
|
|
SkScalar aScale = SK_Scalar1);
|
|
|
|
void preScale(SkScalar rScale, SkScalar gScale, SkScalar bScale,
|
|
|
|
SkScalar aScale = SK_Scalar1);
|
|
|
|
void postScale(SkScalar rScale, SkScalar gScale, SkScalar bScale,
|
|
|
|
SkScalar aScale = SK_Scalar1);
|
|
|
|
|
|
|
|
enum Axis {
|
|
|
|
kR_Axis = 0,
|
|
|
|
kG_Axis = 1,
|
|
|
|
kB_Axis = 2
|
|
|
|
};
|
|
|
|
void setRotate(Axis, SkScalar degrees);
|
|
|
|
void setSinCos(Axis, SkScalar sine, SkScalar cosine);
|
|
|
|
void preRotate(Axis, SkScalar degrees);
|
|
|
|
void postRotate(Axis, SkScalar degrees);
|
|
|
|
|
|
|
|
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); }
|
|
|
|
|
|
|
|
void setSaturation(SkScalar sat);
|
|
|
|
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); }
|
2008-12-17 15:59:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|