Searched defs:ProgramSources (Results 1 - 1 of 1) sorted by relevance

/external/deqp/framework/opengl/
H A DgluShaderProgram.hpp163 struct ProgramSources;
174 ShaderProgram (const RenderContext& renderCtx, const ProgramSources& sources);
202 // ProgramSources utilities and implementation.
282 struct ProgramSources struct in namespace:glu
291 ProgramSources (void) : transformFeedbackBufferMode(0), separable(false) {} function in struct:glu::ProgramSources
293 ProgramSources& operator<< (const AttribLocationBinding& binding) { attribLocationBindings.push_back(binding); return *this; }
294 ProgramSources& operator<< (const TransformFeedbackMode& mode) { transformFeedbackBufferMode = mode.mode; return *this; }
295 ProgramSources& operator<< (const TransformFeedbackVarying& varying) { transformFeedbackVaryings.push_back(varying.name); return *this; }
296 ProgramSources& operator<< (const ShaderSource& shaderSource) { sources[shaderSource.shaderType].push_back(shaderSource.source); return *this; }
297 ProgramSources
[all...]

Completed in 526 milliseconds