Home | History | Annotate | Download | only in gpu

Lines Matching defs:ce

98             const CircleEdgeEffect& ce = args.fGP.cast<CircleEdgeEffect>();
104 varyingHandler->emitAttributes(ce);
108 vertBuilder->codeAppendf("%s = %s;", v.vsOut(), ce.inCircleEdge()->fName);
112 if (!ce.colorIgnored()) {
113 varyingHandler->addPassThroughAttribute(ce.inColor(), args.fOutputColor);
117 this->setupPosition(vertBuilder, gpArgs, ce.inPosition()->fName);
124 ce.inPosition()->fName,
125 ce.localMatrix(),
132 if (ce.isStroked()) {
144 const CircleEdgeEffect& ce = gp.cast<CircleEdgeEffect>();
145 uint16_t key = ce.isStroked() ? 0x1 : 0x0;
146 key |= ce.usesLocalCoords() && ce.localMatrix().hasPerspective() ? 0x2 : 0x0;
147 key |= ce.colorIgnored() ? 0x4 : 0x0;