Searched refs:mCommands (Results 1 – 4 of 4) sorted by relevance
1052 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 …]
516 IntermediateCommandStream mCommands; variable
145 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()
699 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