Lines Matching refs:Query
15 // Query.cpp: Implements the es2::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;
50 type = sw::Query::TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN;
57 mQuery = new sw::Query(type);
83 void Query::end()
111 GLuint Query::getResult()
124 GLboolean Query::isResultAvailable()
134 GLenum Query::getType() const
139 GLboolean Query::testQuery()
165 return GL_TRUE; // Prevent blocking when query is nullptr