Lines Matching defs:query
45 // Query function template.
47 T query (const glw::Functions& gl, deUint32 param);
81 // Query function implementations.
83 GLint query<GLint> (const glw::Functions& gl, deUint32 param)
91 GLfloat query<GLfloat> (const glw::Functions& gl, deUint32 param)
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)
113 FloatRange query<FloatRange> (const glw::Functions& gl, deUint32 param)
159 const T value = query<T>(m_context.getRenderContext().getFunctions(), m_limit);
160 GLU_EXPECT_NO_ERROR(gl.getError(), "Query failed");