Home | History | Annotate | Download | only in libGL

Lines Matching refs:Query

15 // Query.cpp: Implements the gl::Query class
17 #include "Query.h"
25 Query::Query(GLuint name, GLenum type) : NamedObject(name)
33 Query::~Query()
38 void Query::begin()
42 sw::Query::Type type;
47 type = sw::Query::FRAGMENTS_PASSED;
53 mQuery = new sw::Query(type);
68 void Query::end()
85 GLuint Query::getResult()
98 GLboolean Query::isResultAvailable()
108 GLenum Query::getType() const
113 GLboolean Query::testQuery()
136 return GL_TRUE; // Prevent blocking when query is null