Home
last modified time | relevance | path

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

/external/angle/src/libANGLE/renderer/vulkan/
DSecondaryCommandBuffer.h703 reinterpret_cast<CommandHeader *>(mCurrentWritePointer)->id = CommandID::Invalid; in initialize()
739 CommandHeader *header = reinterpret_cast<CommandHeader *>(mCurrentWritePointer); in commonInit()
744 mCurrentWritePointer += allocationSize; in commonInit()
746 reinterpret_cast<CommandHeader *>(mCurrentWritePointer)->id = CommandID::Invalid; in commonInit()
752 mCurrentWritePointer = mAllocator->fastAllocate(blockSize);
754 mCommands.push_back(reinterpret_cast<CommandHeader *>(mCurrentWritePointer));
782 *variableDataPtr = Offset<uint8_t>(mCurrentWritePointer, fixedAllocationSize); in initCommand()
827 uint8_t *mCurrentWritePointer; variable
832 : mIsOpen(true), mAllocator(nullptr), mCurrentWritePointer(nullptr), mCurrentBytesRemaining(0) in SecondaryCommandBuffer()