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

  /external/skia/include/core/
SkColorSpace.h 44 float fG;
SkColor.h 171 float fG;
176 return fA == other.fA && fR == other.fR && fG == other.fG && fB == other.fB;
193 return Pin(fR, fG, fB, fA);
  /external/skia/src/core/
SkColorSpaceXform_Base.h 89 const float* fG;
96 const uint8_t* fG;
SkMaskGamma.h 171 * If fR, fG, or fB is nullptr, all of them will be. This indicates that no mask
179 : fParent(std::move(parent)), fR(r), fG(g), fB(b) { }
185 SkTMaskPreBlend() : fParent(), fR(nullptr), fG(nullptr), fB(nullptr) { }
192 : fParent(that.fParent), 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 179 SkScalar fR, fG, fB;
182 result.fR = r; result.fG = g; result.fB = b;
186 return (fR == wa.fR && fG == wa.fG && fB == wa.fB);

Completed in 668 milliseconds