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

  /external/skia/include/core/
SkColor.h 164 float fG;
169 return fA == other.fA && fR == other.fR && fG == other.fG && fB == other.fB;
185 return Pin(fR, fG, fB, fA);
SkColorSpace.h 51 float fG;
73 return s * (powf(fA * x + fB, fG) + fE);
  /external/skia/src/core/
SkColorSpaceXform_Base.h 77 const float* fG;
84 const uint8_t* fG;
SkMaskGamma.h 172 * If fR, fG, or fB is nullptr, all of them will be. This indicates that no mask
180 : fParent(std::move(parent)), fR(r), fG(g), fB(b) { }
186 SkTMaskPreBlend() : fParent(), fR(nullptr), fG(nullptr), fB(nullptr) { }
193 : fParent(that.fParent), fR(that.fR), fG(that.fG), fB(that.fB) { }
197 /** True if this PreBlend should be applied. When false, fR, fG, and fB are nullptr. */
198 bool isApplicable() const { return SkToBool(this->fG); }
201 const uint8_t* fG;
  /external/skqp/include/core/
SkColor.h 164 float fG;
169 return fA == other.fA && fR == other.fR && fG == other.fG && fB == other.fB;
185 return Pin(fR, fG, fB, fA);
SkColorSpace.h 51 float fG;
73 return s * (powf(fA * x + fB, fG) + fE);
  /external/skqp/src/core/
SkColorSpaceXform_Base.h 77 const float* fG;
84 const uint8_t* fG;
SkMaskGamma.h 172 * If fR, fG, or fB is nullptr, all of them will be. This indicates that no mask
180 : fParent(std::move(parent)), fR(r), fG(g), fB(b) { }
186 SkTMaskPreBlend() : fParent(), fR(nullptr), fG(nullptr), fB(nullptr) { }
193 : fParent(that.fParent), fR(that.fR), fG(that.fG), fB(that.fB) { }
197 /** True if this PreBlend should be applied. When false, fR, fG, and fB are nullptr. */
198 bool isApplicable() const { return SkToBool(this->fG); }
201 const uint8_t* fG;
  /external/skia/src/gpu/effects/
GrDistanceFieldGeoProc.h 183 SkScalar fR, fG, fB;
186 result.fR = r; result.fG = g; result.fB = b;
190 return (fR == wa.fR && fG == wa.fG && fB == wa.fB);
  /external/skqp/src/gpu/effects/
GrDistanceFieldGeoProc.h 177 SkScalar fR, fG, fB;
180 result.fR = r; result.fG = g; result.fB = b;
184 return (fR == wa.fR && fG == wa.fG && fB == wa.fB);

Completed in 298 milliseconds