Lines Matching refs:src
430 std::ostringstream src;
431 src << glu::getGLSLVersionDeclaration(glu::GLSL_VERSION_450) << "\n"
454 programCollection.glslSources.add("vert") << glu::VertexSource(src.str());
459 std::ostringstream src;
460 src << glu::getGLSLVersionDeclaration(glu::GLSL_VERSION_450) << "\n"
483 programCollection.glslSources.add("vert_full") << glu::VertexSource(src.str());
488 std::ostringstream src;
489 src << glu::getGLSLVersionDeclaration(glu::GLSL_VERSION_450) << "\n"
499 programCollection.glslSources.add("frag") << glu::FragmentSource(src.str());
505 std::ostringstream src;
506 src << glu::getGLSLVersionDeclaration(glu::GLSL_VERSION_450) << "\n"
531 programCollection.glslSources.add("frag_fmask_fetch") << glu::FragmentSource(src.str());
552 std::ostringstream src;
553 src << glu::getGLSLVersionDeclaration(glu::GLSL_VERSION_450) << "\n"
573 src << " uint mask = fragmentMaskFetchAMD(u_image, " << samplingPos << ");\n"
580 src << " " << samplerPrefix << "vec4 color = texelFetch(u_image, " << samplingPos << ", sampleNdx);\n"
583 src << "}\n";
585 programCollection.glslSources.add(pShaderParams->name) << glu::ComputeSource(src.str());
1221 const deUint8* src = static_cast<const deUint8*>(imageData)
1228 return tcu::ConstPixelBufferAccess(mapVkFormat(params.colorFormat), size, pitch, src);