Home
last modified time | relevance | path

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

/device/generic/vulkan-cereal/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()
DGLObjectCounter.h25 class GLObjectCounter {
26 DISALLOW_COPY_ASSIGN_AND_MOVE(GLObjectCounter);
29 GLObjectCounter();
30 static GLObjectCounter* get();
DAndroid.bp25 "GLObjectCounter.cpp",
DCMakeLists.txt11 GLObjectCounter.cpp
/device/generic/vulkan-cereal/host-common/
Dmisc.cpp28 android::base::GLObjectCounter* s_default_gl_object_counter = nullptr;
30 android::base::GLObjectCounter* s_gl_object_counter = nullptr;
76 void emugl::setGLObjectCounter(android::base::GLObjectCounter* counter) { in setGLObjectCounter()
80 android::base::GLObjectCounter* emugl::getGLObjectCounter() { in getGLObjectCounter()
83 s_default_gl_object_counter = new android::base::GLObjectCounter; in getGLObjectCounter()
Dmisc.h45 class GLObjectCounter; variable
70 android::base::GLObjectCounter* counter);
71 EMUGL_COMMON_API android::base::GLObjectCounter* getGLObjectCounter();
Dopengles.cpp248 sRenderLib->setGLObjectCounter(android::base::GLObjectCounter::get()); in android_startOpenglesRenderer()
/device/generic/vulkan-cereal/stream-servers/
DRenderLib.h38 class GLObjectCounter; variable
68 android::base::GLObjectCounter* counter) = 0;
DRenderLibImpl.h35 android::base::GLObjectCounter* counter) override;
DRenderLibImpl.cpp51 android::base::GLObjectCounter* counter) { in setGLObjectCounter()
/device/generic/vulkan-cereal/stream-servers/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()
/device/generic/vulkan-cereal/stream-servers/tests/
DVulkan_unittest.cpp477 emugl::setGLObjectCounter(android::base::GLObjectCounter::get()); in SetUp()
DSampleApplication.cpp238 emugl::setGLObjectCounter(android::base::GLObjectCounter::get()); in SampleApplication()
DFrameBuffer_unittest.cpp66 emugl::setGLObjectCounter(android::base::GLObjectCounter::get()); in SetUp()