Searched defs:ONE_OVER_255 (Results 1 - 1 of 1) sorted by relevance

/external/skia/include/gpu/
H A DGrColor.h125 static const float ONE_OVER_255 = 1.f / 255.f; local
126 rgba[0] = GrColorUnpackR(color) * ONE_OVER_255;
127 rgba[1] = GrColorUnpackG(color) * ONE_OVER_255;
128 rgba[2] = GrColorUnpackB(color) * ONE_OVER_255;
129 rgba[3] = GrColorUnpackA(color) * ONE_OVER_255;
134 static const float ONE_OVER_255 = 1.f / 255.f; local
135 return value * ONE_OVER_255;

Completed in 73 milliseconds