Home | History | Annotate | Download | only in ops

Lines Matching refs:hasColors

19                 sizeof(SkPoint) + sizeof(SkPoint) + (this->hasColors() ? sizeof(GrColor) : 0);
32 static sk_sp<GrGeometryProcessor> make_gp(bool hasColors,
37 if (hasColors) {
47 sk_sp<GrGeometryProcessor> gp(make_gp(this->hasColors(), this->color(), this->viewMatrix()));
52 sizeof(SkPoint) + sizeof(SkPoint) + (this->hasColors() ? sizeof(GrColor) : 0));
167 if (this->hasColors() != that->hasColors()) {
171 if (!this->hasColors() && this->color() != that->color()) {
215 bool hasColors) {
219 if (hasColors) {
232 bool hasColors = random->nextBool();
234 randomize_params(spriteCount, random, &xforms, &texRects, &colors, hasColors);
240 hasColors ? colors.begin() : nullptr);