Home | History | Annotate | Download | only in functional

Lines Matching refs:PARAM

47 T query (const glw::Functions& gl, deUint32 param);
83 GLint query<GLint> (const glw::Functions& gl, deUint32 param)
86 gl.getIntegerv(param, &val);
91 GLfloat query<GLfloat> (const glw::Functions& gl, deUint32 param)
94 gl.getFloatv(param, &val);
99 NegInt query<NegInt> (const glw::Functions& gl, deUint32 param)
101 return NegInt(query<GLint>(gl, param));
105 Boolean query<Boolean> (const glw::Functions& gl, deUint32 param)
108 gl.getBooleanv(param, &val);
113 FloatRange query<FloatRange> (const glw::Functions& gl, deUint32 param)
116 gl.getFloatv(param, &v[0]);
191 #define LIMIT_CASE(NAME, PARAM, TYPE, MIN_VAL) \
192 addChild(new LimitQueryCase<TYPE>(m_context, #NAME, #PARAM, PARAM, MIN_VAL))