Home | History | Annotate | Download | only in effects

Lines Matching refs:tex

39     static GrFragmentProcessor* Create(GrTexture* tex, const SkScalar coefficients[16],
44 return Create(tex, coefficients, GrCoordTransform::MakeDivByTextureWHMatrix(tex),
47 return SkNEW_ARGS(GrBicubicEffect, (tex, coefficients,
48 GrCoordTransform::MakeDivByTextureWHMatrix(tex),
56 static GrFragmentProcessor* Create(GrTexture* tex, const SkMatrix& matrix,
58 return Create(tex, gMitchellCoefficients, matrix, tileModes);
65 static GrFragmentProcessor* Create(GrTexture* tex, const SkScalar coefficients[16],
68 return SkNEW_ARGS(GrBicubicEffect, (tex, coefficients, matrix, tileModes));
74 static GrFragmentProcessor* Create(GrTexture* tex, const SkMatrix& matrix,
76 return SkNEW_ARGS(GrBicubicEffect, (tex, gMitchellCoefficients, matrix, domain));