Lines Matching defs:src
2144 de::MovePtr<Image> m_image; //! Additional image used as src or dst depending on operation mode.
2167 std::ostringstream src;
2168 src << glu::getGLSLVersionDeclaration(glu::GLSL_VERSION_440) << "\n"
2182 programCollection.glslSources.add(shaderPrefix + "vert") << glu::VertexSource(src.str());
2187 std::ostringstream src;
2188 src << glu::getGLSLVersionDeclaration(glu::GLSL_VERSION_440) << "\n"
2212 programCollection.glslSources.add(shaderPrefix + "tesc") << glu::TessellationControlSource(src.str());
2217 std::ostringstream src;
2218 src << glu::getGLSLVersionDeclaration(glu::GLSL_VERSION_440) << "\n"
2237 programCollection.glslSources.add(shaderPrefix + "tese") << glu::TessellationEvaluationSource(src.str());
2242 std::ostringstream src;
2243 src << glu::getGLSLVersionDeclaration(glu::GLSL_VERSION_440) << "\n"
2267 programCollection.glslSources.add(shaderPrefix + "geom") << glu::GeometrySource(src.str());
2272 std::ostringstream src;
2273 src << glu::getGLSLVersionDeclaration(glu::GLSL_VERSION_440) << "\n"
2285 programCollection.glslSources.add(shaderPrefix + "frag") << glu::FragmentSource(src.str());
2290 std::ostringstream src;
2291 src << glu::getGLSLVersionDeclaration(glu::GLSL_VERSION_440) << "\n"
2302 programCollection.glslSources.add(shaderPrefix + "comp") << glu::ComputeSource(src.str());
4251 std::ostringstream src;
4252 src << glu::getGLSLVersionDeclaration(glu::GLSL_VERSION_440) << "\n"
4263 programCollection.glslSources.add("draw_vert") << glu::VertexSource(src.str());
4272 std::ostringstream src;
4273 src << glu::getGLSLVersionDeclaration(glu::GLSL_VERSION_440) << "\n"
4282 programCollection.glslSources.add("draw_frag") << glu::FragmentSource(src.str());
4895 std::ostringstream src;
4896 src << glu::getGLSLVersionDeclaration(glu::GLSL_VERSION_440) << "\n"
4910 programCollection.glslSources.add("read_ib_vert") << glu::VertexSource(src.str());
4915 std::ostringstream src;
4916 src << glu::getGLSLVersionDeclaration(glu::GLSL_VERSION_440) << "\n"
4925 programCollection.glslSources.add("read_ib_frag") << glu::FragmentSource(src.str());
4930 std::ostringstream src;
4931 src << glu::getGLSLVersionDeclaration(glu::GLSL_VERSION_440) << "\n"
4942 programCollection.glslSources.add("read_ib_comp") << glu::ComputeSource(src.str());
5240 std::ostringstream src;
5241 src << glu::getGLSLVersionDeclaration(glu::GLSL_VERSION_440) << "\n";
5244 src << "layout(location = 0) in uvec4 v_in_data;\n"
5257 src << "layout(location = 0) in uint v_in_data;\n"
5268 programCollection.glslSources.add("input_vert") << glu::VertexSource(src.str());
5273 std::ostringstream src;
5274 src << glu::getGLSLVersionDeclaration(glu::GLSL_VERSION_440) << "\n"
5282 programCollection.glslSources.add("input_frag") << glu::FragmentSource(src.str());