Home
last modified time | relevance | path

Searched refs:QueryNULL (Results 1 – 4 of 4) sorted by relevance

/external/angle/src/libANGLE/renderer/null/
DQueryNULL.cpp17 QueryNULL::QueryNULL(gl::QueryType type) : QueryImpl(type) {} in QueryNULL() function in rx::QueryNULL
19 QueryNULL::~QueryNULL() {} in ~QueryNULL()
21 angle::Result QueryNULL::begin(const gl::Context *context) in begin()
26 angle::Result QueryNULL::end(const gl::Context *context) in end()
31 angle::Result QueryNULL::queryCounter(const gl::Context *context) in queryCounter()
36 angle::Result QueryNULL::getResult(const gl::Context *context, GLint *params) in getResult()
42 angle::Result QueryNULL::getResult(const gl::Context *context, GLuint *params) in getResult()
48 angle::Result QueryNULL::getResult(const gl::Context *context, GLint64 *params) in getResult()
54 angle::Result QueryNULL::getResult(const gl::Context *context, GLuint64 *params) in getResult()
60 angle::Result QueryNULL::isResultAvailable(const gl::Context *context, bool *available) in isResultAvailable()
DQueryNULL.h18 class QueryNULL : public QueryImpl
21 QueryNULL(gl::QueryType type);
22 ~QueryNULL() override;
DBUILD.gn32 "QueryNULL.cpp",
33 "QueryNULL.h",
DContextNULL.cpp429 return new QueryNULL(type); in createQuery()