Lines Matching refs:vert
126 std::ostringstream vert, frag; in genSources() local
128 vert << "#version 300 es\n" in genSources()
135 vert << "in highp int a_iterCount;\n"; in genSources()
138 vert << "flat out highp int v_iterCount;\n"; in genSources()
143 (isVertCase ? vert : frag) << "uniform highp int u_iterCount;\n"; in genSources()
147 vert << "out mediump vec4 v_color;\n"; in genSources()
153 vert << "\nvoid main (void)\n{\n" in genSources()
158 vert << " v_iterCount = a_iterCount;\n"; in genSources()
167 std::ostringstream& op = isVertCase ? vert : frag; in genSources()
197 vert << " v_color = color;\n"; in genSources()
203 vert << "}\n"; in genSources()
206 return glu::ProgramSources() << glu::VertexSource(vert.str()) << glu::FragmentSource(frag.str()); in genSources()