Home | History | Annotate | Download | only in gpu

Lines Matching refs:localMatrix

74     static GrGeometryProcessor* Create(GrColor color, bool stroke, const SkMatrix& localMatrix) {
75 return SkNEW_ARGS(CircleEdgeEffect, (color, stroke, localMatrix));
81 const SkMatrix& localMatrix() const { return fLocalMatrix; }
116 ce.localMatrix(), args.fTransformsIn, args.fTransformsOut);
137 key |= local.fUsesLocalCoords && ce.localMatrix().hasPerspective() ? 0x2 : 0x0;
184 CircleEdgeEffect(GrColor color, bool stroke, const SkMatrix& localMatrix)
186 , fLocalMatrix(localMatrix) {
235 static GrGeometryProcessor* Create(GrColor color, bool stroke, const SkMatrix& localMatrix) {
236 return SkNEW_ARGS(EllipseEdgeEffect, (color, stroke, localMatrix));
247 const SkMatrix& localMatrix() const { return fLocalMatrix; }
285 ee.localMatrix(), args.fTransformsIn, args.fTransformsOut);
321 key |= local.fUsesLocalCoords && ee.localMatrix().hasPerspective() ? 0x2 : 0x0;
370 EllipseEdgeEffect(GrColor color, bool stroke, const SkMatrix& localMatrix)
372 , fLocalMatrix(localMatrix) {