Searched defs:GrColor4f (Results 1 - 1 of 1) sorted by last modified time

/external/skia/include/gpu/
H A DGrColor.h174 * Similarly, GrColor4f is 4 floats for R, G, B, A, in that order. And like GrColor, whether
177 struct GrColor4f { struct
180 GrColor4f() {} function in struct:GrColor4f
181 GrColor4f(float r, float g, float b, float a) { function in struct:GrColor4f
191 GrColor4f(Illegal_Constructor) { function in struct:GrColor4f
198 static GrColor4f OpaqueWhite() {
199 return GrColor4f(1.0f, 1.0f, 1.0f, 1.0f);
202 static GrColor4f TransparentBlack() {
203 return GrColor4f(0.0f, 0.0f, 0.0f, 0.0f);
206 static GrColor4f FromGrColo
[all...]

Completed in 110 milliseconds