/external/angle/src/libANGLE/ |
D | State.cpp | 207 Buffer *oldBuffer = mVertexArray->mState.mElementArrayBuffer.get(); in setGenericBufferBinding() 210 oldBuffer->removeObserver(&mVertexArray->mState.mElementArrayBuffer); in setGenericBufferBinding() 214 mVertexArray->mState.mElementArrayBuffer.assign(buffer); in setGenericBufferBinding() 217 buffer->addObserver(&mVertexArray->mState.mElementArrayBuffer); in setGenericBufferBinding() 221 mVertexArray->mDirtyBits.set(VertexArray::DIRTY_BIT_ELEMENT_ARRAY_BUFFER); in setGenericBufferBinding() 222 mVertexArray->mIndexRangeCache.invalidate(); in setGenericBufferBinding() 350 mVertexArray(nullptr), 1793 if (mVertexArray == vertexArray) in setVertexArrayBinding() 1795 if (mVertexArray) in setVertexArrayBinding() 1796 mVertexArray->onBindingChanged(context, -1); in setVertexArrayBinding() [all …]
|
D | VertexArray.cpp | 116 mVertexArray(factory->createVertexArray(mState)), in VertexArray() 140 mVertexArray->destroy(context); in onDestroy() 141 SafeDelete(mVertexArray); in onDestroy() 147 ASSERT(!mVertexArray); in ~VertexArray() 577 mVertexArray->syncState(context, mDirtyBits, &mDirtyAttribBits, &mDirtyBindingBits)); in syncState()
|
D | State.h | 359 ASSERT(mVertexArray != nullptr); in getVertexArray() 360 return mVertexArray; in getVertexArray() 492 mVertexArray->setVertexAttribPointer(context, attribNum, boundBuffer, size, type, in setVertexAttribPointer() 505 mVertexArray->setVertexAttribIPointer(context, attribNum, boundBuffer, size, type, stride, in setVertexAttribIPointer() 538 mVertexArray->setVertexAttribBinding(context, attribIndex, bindingIndex); in setVertexAttribBinding() 790 bool isCurrentVertexArray(const VertexArray *va) const { return va == mVertexArray; } in isCurrentVertexArray() 1066 VertexArray *mVertexArray; variable
|
D | VertexArray.h | 243 rx::VertexArrayImpl *getImplementation() const { return mVertexArray; } in getImplementation() 359 rx::VertexArrayImpl *mVertexArray; variable
|
/external/angle/src/libANGLE/renderer/vulkan/ |
D | ContextVk.cpp | 424 mVertexArray(nullptr), 865 if (mVertexArray->getStreamingVertexAttribsMask().any()) in setupDraw() 868 ANGLE_TRY(mVertexArray->updateStreamedAttribs(context, firstVertexOrInvalid, in setupDraw() 941 const gl::Buffer *elementArrayBuffer = mVertexArray->getState().getElementArrayBuffer(); in setupIndexedDraw() 945 ANGLE_TRY(mVertexArray->convertIndexBufferCPU(this, indexType, indexCount, indices)); in setupIndexedDraw() 976 ANGLE_TRY(mVertexArray->convertIndexBufferCPU(this, indexType, byteCount, src)); in setupIndexedDraw() 981 ANGLE_TRY(mVertexArray->convertIndexBufferGPU(this, bufferVk, indices)); in setupIndexedDraw() 1050 ANGLE_TRY(mVertexArray->handleLineLoopIndexIndirect(this, indexType, srcIndirectBuf, in setupLineLoopIndexedIndirectDraw() 1078 ANGLE_TRY(mVertexArray->handleLineLoopIndirectDraw( in setupLineLoopIndirectDraw() 1103 ANGLE_TRY(mVertexArray->handleLineLoop(this, firstVertex, vertexOrIndexCount, in setupLineLoopDraw() [all …]
|
D | ContextVk.h | 1023 VertexArrayVk *mVertexArray; variable
|
/external/angle/src/tests/gl_tests/ |
D | TransformFeedbackTest.cpp | 1558 TransformFeedbackLifetimeTest() : mVertexArray(0) {} in TransformFeedbackLifetimeTest() 1562 glGenVertexArrays(1, &mVertexArray); in testSetUp() 1563 glBindVertexArray(mVertexArray); in testSetUp() 1582 glDeleteVertexArrays(1, &mVertexArray); in testTearDown() 1586 GLuint mVertexArray; member in __anond17f8e4d0111::TransformFeedbackLifetimeTest 1621 glDeleteVertexArrays(1, &mVertexArray); in TEST_P() 1622 mVertexArray = 0; in TEST_P()
|
/external/angle/src/libANGLE/renderer/metal/ |
D | ContextMtl.h | 524 VertexArrayMtl *mVertexArray = nullptr; variable
|
D | ContextMtl.mm | 593 ANGLE_TRY(mVertexArray->getIndexBuffer(context, type, mode, count, indices, &idxBuffer, 1885 mVertexArray = mtl::GetImpl(glState.getVertexArray()); 1923 ANGLE_TRY(mVertexArray->updateClientAttribs(context, firstVertex, vertexOrIndexCount, 2279 ANGLE_TRY(mVertexArray->setupDraw(context, &mRenderEncoder, &rppChange,
|