Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/gl/
DRewriteRepeatedAssignToSwizzled.cpp73 TIntermBlock *parentBlock = getParentNode()->getAsBlock(); in visitBinary() local
74 if (parentBlock && node->isAssignment() && node->getLeft()->getAsSwizzleNode() && rightBinary && in visitBinary()
83 mMultiReplacements.emplace_back(parentBlock, node, std::move(replacements)); in visitBinary()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/d3d/
DSeparateArrayInitialization.cpp61 TIntermBlock *parentBlock = getParentNode()->getAsBlock(); in visitDeclaration() local
62 ASSERT(parentBlock != nullptr); in visitDeclaration()
76 mMultiReplacements.emplace_back(parentBlock, node, std::move(replacements)); in visitDeclaration()
DArrayReturnValueToOutParameter.cpp155 TIntermBlock *parentBlock = getParentNode()->getAsBlock(); in visitAggregate() local
156 if (parentBlock) in visitAggregate()
173 mMultiReplacements.emplace_back(parentBlock, node, std::move(replacements)); in visitAggregate()
DRewriteExpressionsWithShaderStorageBlock.cpp309 TIntermBlock *parentBlock = getParentNode()->getAsBlock(); in visitAggregate() local
310 if (parentBlock) in visitAggregate()
318 mMultiReplacements.emplace_back(parentBlock, node, std::move(insertions)); in visitAggregate()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/
DSeparateDeclarations.cpp69 TIntermBlock *parentBlock = getParentNode()->getAsBlock(); in visitDeclaration() local
70 ASSERT(parentBlock != nullptr); in visitDeclaration()
79 mMultiReplacements.emplace_back(parentBlock, node, std::move(replacementDeclarations)); in visitDeclaration()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_util/
DIntermTraverse.cpp273 ParentBlock &parentBlock = mParentBlockStack.back(); in insertStatementsInParentBlock() local
274 if (mPath.back() == parentBlock.node) in insertStatementsInParentBlock()
279 parentBlock = mParentBlockStack.at(mParentBlockStack.size() - 2u); in insertStatementsInParentBlock()
281 NodeInsertMultipleEntry insert(parentBlock.node, parentBlock.pos, insertionsBefore, in insertStatementsInParentBlock()
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/
DOutputASM.cpp3314 TInterfaceBlock* parentBlock = type.getInterfaceBlock(); in uniformRegister() local
3315 bool isBlockMember = (!block && parentBlock); in uniformRegister()
3316 int index = isBlockMember ? lookup(uniforms, parentBlock) : lookup(uniforms, uniform); in uniformRegister()