HomeSort by relevance Sort by last modified time
    Searched defs:binaryNode (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/angle/src/compiler/translator/
FlagStd140Structs.cpp 12 bool FlagStd140Structs::visitBinary(Visit visit, TIntermBinary *binaryNode)
14 if (binaryNode->getRight()->getBasicType() == EbtStruct)
16 switch (binaryNode->getOp())
20 if (isInStd140InterfaceBlock(binaryNode->getLeft()))
22 mFlaggedNodes.push_back(binaryNode);
31 if (binaryNode->getOp() == EOpIndexDirectStruct)
49 TIntermBinary *binaryNode = node->getAsBinaryNode();
51 if (binaryNode)
53 return isInStd140InterfaceBlock(binaryNode->getLeft());
ParseContext.cpp 271 TIntermBinary* binaryNode = node->getAsBinaryNode();
273 if (binaryNode) {
276 switch(binaryNode->getOp()) {
281 return lValueErrorCheck(line, op, binaryNode->getLeft());
283 errorReturn = lValueErrorCheck(line, op, binaryNode->getLeft());
287 TIntermTyped* rightNode = binaryNode->getRight();
341 if (message == 0 && binaryNode == 0 && symNode == 0) {
    [all...]

Completed in 38 milliseconds