Home
last modified time | relevance | path

Searched refs:mAtomicCounterBuffers (Results 1 – 4 of 4) sorted by relevance

/external/angle/src/libANGLE/
DState.cpp463 mAtomicCounterBuffers.resize(caps.maxAtomicCounterBufferBindings); in initialize()
574 for (auto &buf : mAtomicCounterBuffers) in reset()
1902 UpdateIndexedBufferBinding(context, &mAtomicCounterBuffers[index], buffer, target, in setIndexedBufferBinding()
1925 ASSERT(index < mAtomicCounterBuffers.size()); in getIndexedAtomicCounterBuffer()
1926 return mAtomicCounterBuffers[index]; in getIndexedAtomicCounterBuffer()
1970 for (auto &buf : mAtomicCounterBuffers) in detachBuffer()
2834 ASSERT(static_cast<size_t>(index) < mAtomicCounterBuffers.size()); in getIntegeri_v()
2835 *data = mAtomicCounterBuffers[index].id().value; in getIntegeri_v()
2908 ASSERT(static_cast<size_t>(index) < mAtomicCounterBuffers.size()); in getInteger64i_v()
2909 *data = mAtomicCounterBuffers[index].getOffset(); in getInteger64i_v()
[all …]
DProgram.h304 return mAtomicCounterBuffers; in getAtomicCounterBuffers()
404 std::vector<AtomicCounterBuffer> mAtomicCounterBuffers; variable
678 return static_cast<GLuint>(mState.mAtomicCounterBuffers.size()); in getActiveAtomicCounterBufferCount()
DProgram.cpp1471 &mState.mShaderStorageBlocks, &mState.mBufferVariables, &mState.mAtomicCounterBuffers)); in link()
1526 &mState.mAtomicCounterBuffers)); in link()
1814 mState.mAtomicCounterBuffers.clear(); in unlink()
3700 for (unsigned int bufferIndex = 0; bufferIndex < mState.mAtomicCounterBuffers.size(); in linkAtomicCounterBuffers()
3703 auto &buffer = mState.mAtomicCounterBuffers[bufferIndex]; in linkAtomicCounterBuffers()
3719 mState.mAtomicCounterBuffers.push_back(atomicCounterBuffer); in linkAtomicCounterBuffers()
3720 uniform.bufferIndex = static_cast<int>(mState.mAtomicCounterBuffers.size() - 1); in linkAtomicCounterBuffers()
5126 stream.writeInt(mState.mAtomicCounterBuffers.size()); in serialize()
5127 for (const auto &atomicCounterBuffer : mState.mAtomicCounterBuffers) in serialize()
5354 ASSERT(mState.mAtomicCounterBuffers.empty()); in deserialize()
[all …]
DState.h414 size_t getAtomicCounterBufferCount() const { return mAtomicCounterBuffers.size(); } in getAtomicCounterBufferCount()
953 BufferVector mAtomicCounterBuffers; variable