Lines Matching refs:sources
41 void verifyProgram(NegativeTestContext& ctx, glu::ProgramSources sources)
44 const glu::ShaderProgram program (ctx.getRenderContext(), sources);
186 int genMaxSSBlocksSource (NegativeTestContext& ctx, glw::GLenum glShaderType, glu::ProgramSources& sources)
191 sources.sources[getGLUShaderType(glShaderType)].push_back(shaderSrc);
226 glu::ProgramSources sources;
237 sources << glu::VertexSource(source)
242 sources << glu::VertexSource(vertSource)
247 sources << glu::VertexSource(vertSource)
254 sources << glu::VertexSource(vertSource)
261 sources << glu::VertexSource(vertSource)
267 sources << glu::ComputeSource(source);
275 verifyProgram(ctx, sources);
284 glu::ProgramSources sources;
289 combinedSSBlocks += genMaxSSBlocksSource(ctx, GL_VERTEX_SHADER, sources);
290 combinedSSBlocks += genMaxSSBlocksSource(ctx, GL_FRAGMENT_SHADER, sources);
294 combinedSSBlocks += genMaxSSBlocksSource(ctx, GL_TESS_CONTROL_SHADER, sources);
295 combinedSSBlocks += genMaxSSBlocksSource(ctx, GL_TESS_EVALUATION_SHADER, sources);
299 combinedSSBlocks += genMaxSSBlocksSource(ctx, GL_GEOMETRY_SHADER, sources);
307 verifyProgram(ctx, sources);