Home | History | Annotate | Download | only in opengl

Lines Matching defs:sources

186 							ShaderProgram				(const glw::Functions& gl, const ProgramSources& sources);
187 ShaderProgram (const RenderContext& renderCtx, const ProgramSources& sources);
201 void init (const glw::Functions& gl, const ProgramSources& sources);
215 tcu::TestLog& operator<< (tcu::TestLog& log, const ProgramSources& sources);
301 std::vector<std::string> sources[SHADERTYPE_LAST];
313 ProgramSources& operator<< (const ShaderSource& shaderSource) { sources[shaderSource.shaderType].push_back(shaderSource.source); return *this; }
331 ProgramSources sources;
332 sources.sources[SHADERTYPE_VERTEX].push_back(vertexSrc);
333 sources.sources[SHADERTYPE_FRAGMENT].push_back(fragmentSrc);
334 return sources;