Home | History | Annotate | Download | only in glshared

Lines Matching defs:in

8  * you may not use this file except in compliance with the License.
13 * Unless required by applicable law or agreed to in writing, software
97 const char* in = usesInout ? "in" : "attribute";
108 src << in << " highp vec4 a_position;\n";
111 src << in << " " << glu::declare(input->varType, inputPrefix + input->name) << ";\n";
186 src << "layout(points) in;\n"
190 src << "flat in " << glu::declare(input->varType, inputPrefix + input->name) << "[];\n";
272 // flat qualifier is not present in earlier versions?
278 << "in highp vec4 a_position;\n";
282 src << "in " << glu::declare(input->varType, inputPrefix + input->name) << ";\n"
389 src << "flat in " << glu::declare(input->varType, inputPrefix + input->name) << ";\n";
438 src << "flat in " << glu::declare(intType, inputPrefix + output->name) << ";\n";
441 src << "flat in " << glu::declare(output->varType, inputPrefix + output->name) << ";\n";
653 GLU_EXPECT_NO_ERROR(gl.getError(), "Error in draw");
1177 src << "layout(local_size_x = 1) in;\n"
1198 m_maxWorkSize = tcu::IVec3(128,128,64); // Minimum in 3plus
1340 src << "layout(triangles, ccw) in;\n";
1448 src << "layout(isolines, equal_spacing) in;\n\n";
1487 // \todo [2014-06-26 pyry] Duplicate last value in the buffer to prevent infinite loops for example?