Searched refs:GrGLSLExpr1 (Results 1 – 5 of 5) sorted by relevance
/external/skia/src/gpu/glsl/ |
D | GrGLSL_impl.h | 80 inline GrGLSLExpr1 GrGLSLExpr1::VectorCast(const GrGLSLExpr1& expr) { in VectorCast() 84 inline const char* GrGLSLExpr1::ZerosStr() { in ZerosStr() 88 inline const char* GrGLSLExpr1::OnesStr() { in OnesStr() 95 inline const char* GrGLSLExpr1::CastIntStr() { in CastIntStr() 99 inline GrGLSLExpr1 operator*(const GrGLSLExpr1& in0, const GrGLSLExpr1& in1) { 100 return GrGLSLExpr1::Mul(in0, in1); 103 inline GrGLSLExpr1 operator+(const GrGLSLExpr1& in0, const GrGLSLExpr1& in1) { 104 return GrGLSLExpr1::Add(in0, in1); 107 inline GrGLSLExpr1 operator-(const GrGLSLExpr1& in0, const GrGLSLExpr1& in1) { 108 return GrGLSLExpr1::Sub(in0, in1); [all …]
|
D | GrGLSL.h | 258 class GrGLSLExpr1; variable 262 class GrGLSLExpr1 : public GrGLSLExpr<GrGLSLExpr1> { 264 GrGLSLExpr1() in GrGLSLExpr1() function 267 explicit GrGLSLExpr1(int v) in GrGLSLExpr1() function 270 GrGLSLExpr1(const char* expr) in GrGLSLExpr1() function 273 GrGLSLExpr1(const SkString& expr) in GrGLSLExpr1() function 277 static GrGLSLExpr1 VectorCast(const GrGLSLExpr1& expr); 280 GrGLSLExpr1(const char format[], const char in0[]) in GrGLSLExpr1() function 283 GrGLSLExpr1(const char format[], const char in0[], const char in1[]) in GrGLSLExpr1() function 292 friend GrGLSLExpr1 operator*(const GrGLSLExpr1& in0, const GrGLSLExpr1&in1); [all …]
|
/external/skia/src/gpu/effects/ |
D | GrConvexPolyEffect.cpp | 138 (GrGLSLExpr4(args.fInputColor) * GrGLSLExpr1("alpha")).c_str()); in emitCode() 216 (GrGLSLExpr4(args.fInputColor) * GrGLSLExpr1("alpha")).c_str()); in emitCode()
|
D | GrOvalEffect.cpp | 145 (GrGLSLExpr4(args.fInputColor) * GrGLSLExpr1("d")).c_str()); in emitCode() 342 (GrGLSLExpr4(args.fInputColor) * GrGLSLExpr1("alpha")).c_str()); in emitCode()
|
D | GrRRectEffect.cpp | 285 (GrGLSLExpr4(args.fInputColor) * GrGLSLExpr1("alpha")).c_str()); in emitCode() 601 (GrGLSLExpr4(args.fInputColor) * GrGLSLExpr1("alpha")).c_str()); in emitCode()
|