/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::__anon10542::TestThread
|
/device/generic/goldfish/opengl/system/GLESv2_enc/ |
GL2Encoder.cpp | 207 ctx->m_shared->updateBufferData(bufferId, size, (void*)data); 218 GLenum res = ctx->m_shared->subUpdateBufferData(bufferId, offset, size, (void*)data); 229 ctx->m_shared->deleteBufferData(buffers[i]); 605 BufferData * buf = ctx->m_shared->getBufferData(ctx->m_state->currentIndexVbo()); 776 ShaderData* shaderData = ctx->m_shared->getShaderData(shader); 777 SET_ERROR_IF(!ctx->m_shared->isObject(shader), GL_INVALID_VALUE); 817 ctx->m_shared->initProgramData(program,numUniforms); 832 ctx->m_shared->setProgramIndexInfo(program, i, location, size, type, name); 834 ctx->m_shared->setupLocationShiftWAR(program); 844 ctx->m_shared->deleteProgramData(program) [all...] |
GL2Encoder.h | 31 void setSharedGroup(GLSharedGroupPtr shared){ m_shared = shared; } 33 const GLSharedGroupPtr shared() { return m_shared; } 49 GLSharedGroupPtr m_shared; member in class:GL2Encoder
|
/device/generic/goldfish/opengl/system/GLESv1_enc/ |
GLEncoder.h | 33 void setSharedGroup(GLSharedGroupPtr shared) { m_shared = shared; } 50 GLSharedGroupPtr m_shared; member in class:GLEncoder
|
GLEncoder.cpp | 370 ctx->m_shared->updateBufferData(bufferId, size, (void*)data); 380 GLenum res = ctx->m_shared->subUpdateBufferData(bufferId, offset, size, (void*)data); 391 ctx->m_shared->deleteBufferData(buffers[i]); 575 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...] |