/external/deqp/framework/delibs/decpp/ |
deAppendList.cpp | 73 : m_shared (shared) 81 for (deUint32 elemNdx = 0; elemNdx < m_shared->numElements; elemNdx++) 84 m_shared->barrier.sync(SpinBarrier::WAIT_MODE_AUTO); 86 m_shared->testList.append(TestElem(m_threadNdx, elemNdx)); 91 SharedState* const m_shared; member in class:de::__anon16741::TestThread
|
/device/generic/goldfish-opengl/system/GLESv2_enc/ |
GL2Encoder.cpp | 430 ctx->m_shared->updateBufferData(bufferId, size, (void*)data); 431 ctx->m_shared->setBufferUsage(bufferId, usage); 443 GLenum res = ctx->m_shared->subUpdateBufferData(bufferId, offset, size, (void*)data); 465 ctx->m_shared->deleteBufferData(buffers[i]); [all...] |
GL2Encoder.h | 46 m_shared = shared; 47 if (m_state && m_shared.Ptr()) 48 m_state->setTextureData(m_shared->getTextureData()); 59 const GLSharedGroupPtr shared() { return m_shared; } 89 GLSharedGroupPtr m_shared; member in class:GL2Encoder [all...] |
/device/generic/goldfish-opengl/system/GLESv1_enc/ |
GLEncoder.h | 34 m_shared = shared; 35 if (m_state && m_shared.Ptr()) 36 m_state->setTextureData(m_shared->getTextureData()); 54 GLSharedGroupPtr m_shared; member in class:GLEncoder
|
GLEncoder.cpp | 366 ctx->m_shared->updateBufferData(bufferId, size, (void*)data); 376 GLenum res = ctx->m_shared->subUpdateBufferData(bufferId, offset, size, (void*)data); 387 ctx->m_shared->deleteBufferData(buffers[i]); 574 BufferData * buf = ctx->m_shared->getBufferData(ctx->m_state->currentIndexVbo()); [all...] |
/external/deqp/modules/egl/ |
teglGLES2SharingThreadedTests.cpp | 580 SharedPtr<GLES2Context> m_shared; member in class:deqp::egl::GLES2ThreadTest::CreateContext 588 , m_shared (shared) 612 if (m_shared) 614 DE_ASSERT(m_shared->context != EGL_NO_CONTEXT); 615 DE_ASSERT(m_shared->display != EGL_NO_DISPLAY); 616 DE_ASSERT(m_shared->display == m_display); 618 thread.newMessage() << "Begin -- eglCreateContext(" << m_display << ", " << m_config << ", " << m_shared->context << ", { EGL_CONTEXT_CLIENT_VERSION, 2, EGL_NONE })" << tcu::ThreadUtil::Message::End; 619 m_context->context = thread.egl.createContext(m_display, m_config, m_shared->context, attriblist); [all...] |