Home
last modified time | relevance | path

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

/external/angle/src/libANGLE/renderer/metal/
Dmtl_command_buffer.mm1052 mCommands.clear();
1252 while (mCommands.good())
1254 CmdType cmdType = mCommands.fetch<CmdType>();
1256 encoder(metalCmdEncoder, &mCommands);
1259 mCommands.clear();
1322 mCommands.push(CmdType::SetRenderPipelineState).push([state ANGLE_MTL_RETAIN]);
1334 mCommands.push(CmdType::SetTriangleFillMode).push(mode);
1346 mCommands.push(CmdType::SetFrontFacingWinding).push(winding);
1358 mCommands.push(CmdType::SetCullMode).push(mode);
1371 mCommands.push(CmdType::SetDepthStencilState).push([state ANGLE_MTL_RETAIN]);
[all …]
Dmtl_command_buffer.h516 IntermediateCommandStream mCommands; variable
/external/angle/src/libANGLE/renderer/vulkan/
DSecondaryCommandBuffer.cpp145 for (const CommandHeader *command : mCommands) in executeCommands()
599 *allocatedMemoryOut = kBlockSize * mCommands.size(); in getMemoryUsageStats()
602 for (const CommandHeader *command : mCommands) in getMemoryUsageStats()
620 for (const CommandHeader *command : mCommands) in dumpCommands()
DSecondaryCommandBuffer.h699 ASSERT(mCommands.empty()); in initialize()
711 mCommands.clear(); in reset()
721 bool empty() const { return mCommands.size() == 0 || mCommands[0]->id == CommandID::Invalid; } in empty()
725 ASSERT(mCommands.size() > 0 || mCurrentBytesRemaining == 0); in getCommandSize()
727 static_cast<uint32_t>((mCommands.size() * kBlockSize) - mCurrentBytesRemaining); in getCommandSize()
754 mCommands.push_back(reinterpret_cast<CommandHeader *>(mCurrentWritePointer));
822 std::vector<CommandHeader *> mCommands; variable