Home | History | Annotate | Download | only in gl

Lines Matching refs:in1

156     GrGLSLExpr(const char format[], const char in0[], const char in1[])
158 fExpr.appendf(format, in0, in1);
174 * vecN(in0.x * in1.x, ...) if dim(T0) == dim(T1) (component-wise)
175 * vecN(in0.x * in1, ...) if dim(T1) == 1 (vector by scalar)
176 * vecN(in0 * in1.x, ...) if dim(T0) == 1 (scalar by vector)
179 static Self Mul(T0 in0, T1 in1);
183 * vecN(in0.x + in1.x, ...) or vecN(in0.x + in1, ...) or vecN(in0 + in1.x, ...).
186 static Self Add(T0 in0, T1 in1);
190 * vecN(in0.x - in1.x, ...) or vecN(in0.x - in1, ...) or vecN(in0 - in1.x, ...).
193 static Self Sub(T0 in0, T1 in1);
238 GrGLSLExpr1(const char format[], const char in0[], const char in1[])
239 : INHERITED(format, in0, in1) {
247 friend GrGLSLExpr1 operator*(const GrGLSLExpr1& in0, const GrGLSLExpr1&in1);
248 friend GrGLSLExpr1 operator+(const GrGLSLExpr1& in0, const GrGLSLExpr1&in1);
249 friend GrGLSLExpr1 operator-(const GrGLSLExpr1& in0, const GrGLSLExpr1&in1);
284 GrGLSLExpr4(const char format[], const char in0[], const char in1[])
285 : INHERITED(format, in0, in1) {
294 friend GrGLSLExpr4 operator*(const GrGLSLExpr1& in0, const GrGLSLExpr4&in1);
295 friend GrGLSLExpr4 operator+(const GrGLSLExpr1& in0, const GrGLSLExpr4&in1);
296 friend GrGLSLExpr4 operator-(const GrGLSLExpr1& in0, const GrGLSLExpr4&in1);
297 friend GrGLSLExpr4 operator*(const GrGLSLExpr4& in0, const GrGLSLExpr1&in1);
298 friend GrGLSLExpr4 operator+(const GrGLSLExpr4& in0, const GrGLSLExpr1&in1);
299 friend GrGLSLExpr4 operator-(const GrGLSLExpr4& in0, const GrGLSLExpr1&in1);
302 friend GrGLSLExpr4 operator*(const GrGLSLExpr4& in0, const GrGLSLExpr4&in1);
303 friend GrGLSLExpr4 operator+(const GrGLSLExpr4& in0, const GrGLSLExpr4&in1);
304 friend GrGLSLExpr4 operator-(const GrGLSLExpr4& in0, const GrGLSLExpr4&in1);