Lines Matching refs:centroid
82 return "centroid";
189 << "${indent}layout(location = 3) ${outQual}centroid vec4 out_color_centroid;\n"
216 << "${indent}layout(location = 3) ${inQual}centroid vec4 in_color_centroid;\n"
279 std::map<std::string, std::string> centroid = replacements;
284 centroid["qualifier"] = "centroid ";
295 programCollection.glslSources.add("vert_centroid") << glu::VertexSource(vertShaderSingle.specialize(centroid));
296 programCollection.glslSources.add("frag_centroid") << glu::FragmentSource(fragShaderSingle.specialize(centroid));
875 // "smooth" means lack of centroid and sample.
876 // Spec does not specify exactly what "smooth" should be, so it can match centroid or sample.
877 // "centroid" and "sample" may also produce the same results.