Home
last modified time | relevance | path

Searched refs:GLObjectCounter (Results 1 – 16 of 16) sorted by relevance

/hardware/google/aemu/base/
DGLObjectCounter.cpp41 class GLObjectCounter::Impl {
93 static GLObjectCounter* sGlobal() { in sGlobal()
94 static GLObjectCounter* g = new GLObjectCounter; in sGlobal()
98 GLObjectCounter::GLObjectCounter() : mImpl(new GLObjectCounter::Impl()) {} in GLObjectCounter() function in android::base::GLObjectCounter
100 void GLObjectCounter::incCount(size_t type) { in incCount()
104 void GLObjectCounter::decCount(size_t type) { in decCount()
108 std::vector<size_t> GLObjectCounter::getCounts() { in getCounts()
112 std::string GLObjectCounter::printUsage() { in printUsage()
116 GLObjectCounter* GLObjectCounter::get() { in get()
DAndroid.bp21 "GLObjectCounter.cpp",
DBUILD.bazel59 "GLObjectCounter.cpp",
DCMakeLists.txt27 GLObjectCounter.cpp
/hardware/google/aemu/base/include/aemu/base/
DGLObjectCounter.h25 class GLObjectCounter {
26 DISALLOW_COPY_ASSIGN_AND_MOVE(GLObjectCounter);
29 GLObjectCounter();
30 static GLObjectCounter* get();
/hardware/google/gfxstream/host/gl/gl-host-common/opengl/
Dmisc.cpp24 android::base::GLObjectCounter* s_default_gl_object_counter = nullptr;
26 android::base::GLObjectCounter* s_gl_object_counter = nullptr;
64 void emugl::setGLObjectCounter(android::base::GLObjectCounter* counter) { in setGLObjectCounter()
68 android::base::GLObjectCounter* emugl::getGLObjectCounter() { in getGLObjectCounter()
71 s_default_gl_object_counter = new android::base::GLObjectCounter; in getGLObjectCounter()
/hardware/google/gfxstream/host/gl/gl-host-common/include/host-common/opengl/
Dmisc.h33 class GLObjectCounter; variable
53 android::base::GLObjectCounter* counter);
54 EMUGL_COMMON_API android::base::GLObjectCounter* getGLObjectCounter();
/hardware/google/gfxstream/include/render-utils/
DRenderLib.h42 class GLObjectCounter; variable
72 android::base::GLObjectCounter* counter) = 0;
/hardware/google/gfxstream/host/gl/glestranslator/GLcommon/
DNamedObject.cpp89 android::base::GLObjectCounter::get()->incCount(toIndex(genNameInfo.m_type)); in NamedObject()
131 android::base::GLObjectCounter::get()->decCount(toIndex(m_type)); in ~NamedObject()
/hardware/google/gfxstream/host/
DRenderLibImpl.h35 android::base::GLObjectCounter* counter) override;
DRenderLibImpl.cpp55 android::base::GLObjectCounter* counter) { in setGLObjectCounter()
/hardware/google/aemu/build-config/gfxstream/
DCMakeLists.txt14 GLObjectCounter.cpp
/hardware/google/gfxstream/host/gl/gl-host-common/
Dopengles.cpp169 sRenderLib->setGLObjectCounter(android::base::GLObjectCounter::get()); in android_startOpenglesRenderer()
/hardware/google/gfxstream/host/tests/
DVulkan_unittest.cpp446 emugl::setGLObjectCounter(android::base::GLObjectCounter::get()); in SetUp()
DSampleApplication.cpp244 emugl::setGLObjectCounter(android::base::GLObjectCounter::get()); in SampleApplication()
DFrameBuffer_unittest.cpp73 emugl::setGLObjectCounter(android::base::GLObjectCounter::get()); in SetUp()