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

  /external/skia/include/core/
SkColor.h 171 float fG;
175 return fA == other.fA && fR == other.fR && fG == other.fG && fB == other.fB;
188 return Pin(fA, fR, fG, fB);
  /external/skia/src/core/
SkMaskGamma.h 171 * If fR, fG, or fB is nullptr, all of them will be. This indicates that no mask
179 : fParent(SkSafeRef(parent)), fR(r), fG(g), fB(b) { }
185 SkTMaskPreBlend() : fParent(), fR(nullptr), fG(nullptr), fB(nullptr) { }
192 : fParent(SkSafeRef(that.fParent.get())), fR(that.fR), fG(that.fG), fB(that.fB) { }
196 /** True if this PreBlend should be applied. When false, fR, fG, and fB are nullptr. */
197 bool isApplicable() const { return SkToBool(this->fG); }
200 const uint8_t* fG;
  /external/skia/src/gpu/effects/
GrDistanceFieldGeoProc.h 169 SkScalar fR, fG, fB;
172 result.fR = r; result.fG = g; result.fB = b;
176 return (fR == wa.fR && fG == wa.fG && fB == wa.fB);

Completed in 53 milliseconds