Home | History | Annotate | Download | only in glshared

Lines Matching refs:Uniform

23  * \brief Uniform block tests.
40 // Uniform block details.
62 UNUSED_VERTEX = (1<<10), //!< Uniform or struct member is not read in vertex shader.
63 UNUSED_FRAGMENT = (1<<11), //!< Uniform or struct member is not read in fragment shader.
164 class Uniform
167 Uniform (const char* name, const VarType& type, deUint32 flags = 0);
182 typedef std::vector<Uniform>::iterator Iterator;
183 typedef std::vector<Uniform>::const_iterator ConstIterator;
196 void addUniform (const Uniform& uniform) { m_uniforms.push_back(uniform); }
206 std::vector<Uniform> m_uniforms;
240 BUFFERMODE_SINGLE = 0, //!< Single buffer shared between uniform blocks.