Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/
DRemoveInactiveInterfaceVariables.cpp43 const std::vector<sh::InterfaceBlock> &mInterfaceBlocks; member in sh::__anon052867d20111::RemoveInactiveInterfaceVariablesTraverser
60 mInterfaceBlocks(interfaceBlocks), in RemoveInactiveInterfaceVariablesTraverser()
116 !IsVariableActive(mInterfaceBlocks, type.getInterfaceBlock()->name()); in visitDeclaration()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
DCompiler.cpp1340 ASSERT(mInterfaceBlocks.empty()); in collectInterfaceBlocks()
1341 mInterfaceBlocks.reserve(mUniformBlocks.size() + mShaderStorageBlocks.size()); in collectInterfaceBlocks()
1342 mInterfaceBlocks.insert(mInterfaceBlocks.end(), mUniformBlocks.begin(), mUniformBlocks.end()); in collectInterfaceBlocks()
1343 mInterfaceBlocks.insert(mInterfaceBlocks.end(), mShaderStorageBlocks.begin(), in collectInterfaceBlocks()
1360 mInterfaceBlocks.clear(); in clearResults()
DCompiler.h130 const std::vector<sh::InterfaceBlock> &getInterfaceBlocks() const { return mInterfaceBlocks; } in getInterfaceBlocks()
230 std::vector<sh::InterfaceBlock> mInterfaceBlocks; variable