Home | History | Annotate | Download | only in functional

Lines Matching defs:query

54 // Query function template.
56 T query (const glw::Functions& gl, deUint32 param);
98 // Query function implementations.
100 GLint query<GLint> (const glw::Functions& gl, deUint32 param)
108 GLint64 query<GLint64> (const glw::Functions& gl, deUint32 param)
116 GLuint64 query<GLuint64> (const glw::Functions& gl, deUint32 param)
124 GLfloat query<GLfloat> (const glw::Functions& gl,deUint32 param)
132 NegInt query<NegInt> (const glw::Functions& gl, deUint32 param)
134 return NegInt(query<GLint>(gl, param));
138 Boolean query<Boolean> (const glw::Functions& gl, deUint32 param)
146 FloatRange query<FloatRange> (const glw::Functions& gl, deUint32 param)
154 AlignmentInt query<AlignmentInt> (const glw::Functions& gl, deUint32 param)
156 return AlignmentInt(query<GLint>(gl, param));
243 const T value = query<T>(m_context.getRenderContext().getFunctions(), m_limit);
244 GLU_EXPECT_NO_ERROR(gl.getError(), "Query failed");
289 const GLint numFormats = query<GLint>(gl, GL_NUM_COMPRESSED_TEXTURE_FORMATS);
296 GLU_EXPECT_NO_ERROR(gl.getError(), "Query failed");
351 const int numExtensions = query<GLint>(gl, GL_NUM_EXTENSIONS);
354 GLU_EXPECT_NO_ERROR(gl.getError(), "GL_NUM_EXTENSIONS query failed");