Home
last modified time | relevance | path

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

/external/angle/src/libANGLE/renderer/vulkan/
DSuballocation.h229 mSuballocation(std::move(other.mSuballocation)), in BufferSuballocationGarbage()
235 mSuballocation = std::move(other.mSuballocation);
242 : mLifetime(use), mSuballocation(std::move(suballocation)), mBuffer(std::move(buffer)) in BufferSuballocationGarbage()
248 VkDeviceSize getSize() const { return mSuballocation.getSize(); } in getSize()
249 bool isSuballocated() const { return mSuballocation.isSuballocated(); } in isSuballocated()
253 BufferSuballocation mSuballocation; variable
Dvk_helpers.h1074 ASSERT(mSuballocation.valid()); in getBlockSerial()
1075 return mSuballocation.getBlockSerial(); in getBlockSerial()
1077 BufferBlock *getBufferBlock() const { return mSuballocation.getBufferBlock(); } in getBufferBlock()
1078 bool valid() const { return mSuballocation.valid(); } in valid()
1079 const Buffer &getBuffer() const { return mSuballocation.getBuffer(); } in getBuffer()
1080 VkDeviceSize getOffset() const { return mSuballocation.getOffset(); } in getOffset()
1081 VkDeviceSize getSize() const { return mSuballocation.getSize(); } in getSize()
1084 return mSuballocation.getMemoryPropertyFlags(); in getMemoryPropertyFlags()
1089 return mSuballocation.getMappedMemory(); in getMappedMemory()
1092 uint8_t *getBlockMemory() const { return mSuballocation.getBlockMemory(); } in getBlockMemory()
[all …]
DSuballocation.cpp225 mSuballocation.destroy(renderer); in destroyIfComplete()
Dvk_helpers.cpp5477 mSuballocation = std::move(other.mSuballocation); in operator =()
5555 mSuballocation.initWithEntireBuffer(context, buffer.get(), MemoryAllocationType::Buffer, in init()
5603 mSuballocation.initWithEntireBuffer(context, buffer.get(), MemoryAllocationType::BufferExternal, in initExternal()
5635 VK_RESULT_TRY(pool->allocateBuffer(context, size, alignment, &mSuballocation)); in initSuballocation()
5702 uint8_t *mapPointer = mSuballocation.getMappedMemory(); in initializeNonZeroMemory()
5706 mSuballocation.flush(renderer); in initializeNonZeroMemory()
5717 ASSERT(mSuballocation.valid()); in getBufferForVertexArray()
5718 ASSERT(actualDataSize <= mSuballocation.getSize()); in getBufferForVertexArray()
5720 if (!contextVk->hasRobustAccess() || !mSuballocation.isSuballocated() || in getBufferForVertexArray()
5721 actualDataSize == mSuballocation.getSize()) in getBufferForVertexArray()
[all …]