Home
last modified time | relevance | path

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

/external/deqp/framework/opengl/
DgluShaderProgram.hpp299 struct ProgramSources struct
301 std::vector<std::string> sources[SHADERTYPE_LAST];
302 std::vector<AttribLocationBinding> attribLocationBindings;
304 deUint32 transformFeedbackBufferMode; //!< TF buffer mode, or GL_NONE.
305 std::vector<std::string> transformFeedbackVaryings;
306 bool separable;
308 ProgramSources (void) : transformFeedbackBufferMode(0), separable(false) {} in ProgramSources() function
310 … AttribLocationBinding& binding) { attribLocationBindings.push_back(binding); return *this; } in operator <<()
311 …nst TransformFeedbackMode& mode) { transformFeedbackBufferMode = mode.mode; return *this; } in operator <<()
312 …rmFeedbackVarying& varying) { transformFeedbackVaryings.push_back(varying.name); return *this; } in operator <<()
[all …]
/external/deqp/external/vulkancts/framework/vulkan/
DvkGlslToSpirV.cpp284 bool compileGlslToSpirV (const glu::ProgramSources&, std::vector<deUint32>*, glu::ShaderProgramInfo… in compileGlslToSpirV()