Lines Matching defs:ProgramSources
462 struct ProgramSources struct
464 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() argument
475 ProgramSources &operator<<(const AttribLocationBinding &binding) in operator <<()
480 ProgramSources &operator<<(const TransformFeedbackMode &mode) in operator <<()
485 ProgramSources &operator<<(const TransformFeedbackVarying &varying) in operator <<()
490 ProgramSources &operator<<(const ShaderSource &shaderSource) in operator <<()
495 ProgramSources &operator<<(const ProgramSeparable &progSeparable) in operator <<()