Home
last modified time | relevance | path

Searched refs:ScopedQueryUpdate (Results 1 – 2 of 2) sorted by relevance

/hardware/google/gfxstream/guest/GLESv2_enc/
DGL2Encoder.cpp556 class GL2Encoder::ScopedQueryUpdate { class in GL2Encoder
558 ScopedQueryUpdate(GL2Encoder* ctx, uint32_t bytes, T* target) : in ScopedQueryUpdate() function in GL2Encoder::ScopedQueryUpdate
567 ~ScopedQueryUpdate() { in ~ScopedQueryUpdate()
582 ScopedQueryUpdate<GLboolean> query(this, glUtilsParamSize(param) * sizeof(GLboolean), val); in safe_glGetBooleanv()
587 ScopedQueryUpdate<GLfloat> query(this, glUtilsParamSize(param) * sizeof(GLfloat), val); in safe_glGetFloatv()
592 ScopedQueryUpdate<GLint> query(this, glUtilsParamSize(param) * sizeof(GLint), val); in safe_glGetIntegerv()
597 ScopedQueryUpdate<GLint64> query(this, glUtilsParamSize(param) * sizeof(GLint64), val); in safe_glGetInteger64v()
602 ScopedQueryUpdate<GLint> query(this, sizeof(GLint), val); in safe_glGetIntegeri_v()
607 ScopedQueryUpdate<GLint64> query(this, sizeof(GLint64), val); in safe_glGetInteger64i_v()
612 ScopedQueryUpdate<GLboolean> query(this, sizeof(GLboolean), val); in safe_glGetBooleani_v()
DGL2Encoder.h198 template<class T> class ScopedQueryUpdate; variable