Lines Matching refs:Boolean
90 struct Boolean
93 Boolean (GLboolean value_) : value(value_) {}
96 std::ostream& operator<< (std::ostream& str, const Boolean& boolean) { return str << (boolean.value ? "GL_TRUE" : "GL_FALSE"); }
138 Boolean query<Boolean> (const glw::Functions& gl, deUint32 param)
142 return Boolean(val);
161 bool compare<Boolean> (const Boolean& min, const Boolean& reported)
219 template <> struct QueryTypeTraits<Boolean> { enum { CLASS = CLASS_VALUE }; };
459 LIMIT_CASE(shader_compiler, GL_SHADER_COMPILER, Boolean, GL_TRUE);