HomeSort by relevance Sort by last modified time
    Searched defs:SkColorMatrix (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/skia/include/effects/
SkColorMatrix.h 13 class SK_API SkColorMatrix {
35 void setConcat(const SkColorMatrix& a, const SkColorMatrix& b);
36 void preConcat(const SkColorMatrix& mat) { this->setConcat(*this, mat); }
37 void postConcat(const SkColorMatrix& mat) { this->setConcat(mat, *this); }
43 bool operator==(const SkColorMatrix& other) const {
47 bool operator!=(const SkColorMatrix& other) const { return !((*this) == other); }
  /external/skia/include/effects/
SkColorMatrix.h 13 class SK_API SkColorMatrix {
35 void setConcat(const SkColorMatrix& a, const SkColorMatrix& b);
36 void preConcat(const SkColorMatrix& mat) { this->setConcat(*this, mat); }
37 void postConcat(const SkColorMatrix& mat) { this->setConcat(mat, *this); }
43 bool operator==(const SkColorMatrix& other) const {
47 bool operator!=(const SkColorMatrix& other) const { return !((*this) == other); }

Completed in 63 milliseconds