Searched defs:ProgramSources (Results 1 – 2 of 2) sorted by relevance
462 struct ProgramSources struct464 std::vector<std::string> sources[SHADERTYPE_LAST];465 std::vector<AttribLocationBinding> attribLocationBindings;467 uint32_t transformFeedbackBufferMode; //!< TF buffer mode, or GL_NONE.468 std::vector<std::string> transformFeedbackVaryings;469 bool separable;471 ProgramSources(void) : transformFeedbackBufferMode(0), separable(false) in ProgramSources() argument475 ProgramSources &operator<<(const AttribLocationBinding &binding) in operator <<()480 ProgramSources &operator<<(const TransformFeedbackMode &mode) in operator <<()485 ProgramSources &operator<<(const TransformFeedbackVarying &varying) in operator <<()[all …]
345 using ProgramSources = gl::ShaderMap<std::string>; variable