Lines Matching defs:Uniform
24 * \brief Uniform block tests.
35 // Uniform block details.
57 UNUSED_VERTEX = (1 << 10), //!< Uniform or struct member is not read in vertex shader.
58 UNUSED_FRAGMENT = (1 << 11), //!< Uniform or struct member is not read in fragment shader.
214 class Uniform
217 Uniform(const char* name, const VarType& type, deUint32 flags = 0);
241 typedef std::vector<Uniform>::iterator Iterator;
242 typedef std::vector<Uniform>::const_iterator ConstIterator;
279 void addUniform(const Uniform& uniform)
304 std::vector<Uniform> m_uniforms;