Home | History | Annotate | Download | only in glsl

Lines Matching refs:in0

199     GrGLSLExpr(const char format[], const char in0[])
201 fExpr.appendf(format, in0);
205 GrGLSLExpr(const char format[], const char in0[], const char in1[])
207 fExpr.appendf(format, in0, in1);
219 * vecN(in0.x * in1.x, ...) if dim(T0) == dim(T1) (component-wise)
220 * vecN(in0.x * in1, ...) if dim(T1) == 1 (vector by scalar)
221 * vecN(in0 * in1.x, ...) if dim(T0) == 1 (scalar by vector)
224 static Self Mul(T0 in0, T1 in1);
228 * vecN(in0.x + in1.x, ...) or vecN(in0.x + in1, ...) or vecN(in0 + in1.x, ...).
231 static Self Add(T0 in0, T1 in1);
235 * vecN(in0.x - in1.x, ...) or vecN(in0.x - in1, ...) or vecN(in0 - in1.x, ...).
238 static Self Sub(T0 in0, T1 in1);
280 GrGLSLExpr1(const char format[], const char in0[])
281 : INHERITED(format, in0) {
283 GrGLSLExpr1(const char format[], const char in0[], const char in1[])
284 : INHERITED(format, in0, in1) {
292 friend GrGLSLExpr1 operator*(const GrGLSLExpr1& in0, const GrGLSLExpr1&in1);
293 friend GrGLSLExpr1 operator+(const GrGLSLExpr1& in0, const GrGLSLExpr1&in1);
294 friend GrGLSLExpr1 operator-(const GrGLSLExpr1& in0, const GrGLSLExpr1&in1);
326 GrGLSLExpr4(const char format[], const char in0[])
327 : INHERITED(format, in0) {
329 GrGLSLExpr4(const char format[], const char in0[], const char in1[])
330 : INHERITED(format, in0, in1) {
339 friend GrGLSLExpr4 operator*(const GrGLSLExpr1& in0, const GrGLSLExpr4&in1);
340 friend GrGLSLExpr4 operator+(const GrGLSLExpr1& in0, const GrGLSLExpr4&in1);
341 friend GrGLSLExpr4 operator-(const GrGLSLExpr1& in0, const GrGLSLExpr4&in1);
342 friend GrGLSLExpr4 operator*(const GrGLSLExpr4& in0, const GrGLSLExpr1&in1);
343 friend GrGLSLExpr4 operator+(const GrGLSLExpr4& in0, const GrGLSLExpr1&in1);
344 friend GrGLSLExpr4 operator-(const GrGLSLExpr4& in0, const GrGLSLExpr1&in1);
347 friend GrGLSLExpr4 operator*(const GrGLSLExpr4& in0, const GrGLSLExpr4&in1);
348 friend GrGLSLExpr4 operator+(const GrGLSLExpr4& in0, const GrGLSLExpr4&in1);
349 friend GrGLSLExpr4 operator-(const GrGLSLExpr4& in0, const GrGLSLExpr4&in1);