Home
last modified time | relevance | path

Searched refs:argTyped (Results 1 – 2 of 2) sorted by relevance

/external/angle/src/compiler/translator/tree_ops/d3d/
DSeparateArrayConstructorStatements.cpp26 TIntermTyped *argTyped = arg->getAsTyped(); in SplitConstructorArgs() local
27 if (argTyped->hasSideEffects()) in SplitConstructorArgs()
29 TIntermAggregate *argAggregate = argTyped->getAsAggregate(); in SplitConstructorArgs()
30 if (argTyped->isArray() && argAggregate && argAggregate->isConstructor()) in SplitConstructorArgs()
36 argsOut->push_back(argTyped); in SplitConstructorArgs()
/external/angle/src/compiler/translator/
DParseContext.cpp788 const TIntermTyped *argTyped = arg->getAsTyped(); in checkConstructorArguments() local
789 ASSERT(argTyped != nullptr); in checkConstructorArguments()
790 if (type.getBasicType() != EbtStruct && IsOpaqueType(argTyped->getBasicType())) in checkConstructorArguments()
793 reason += getBasicString(argTyped->getBasicType()); in checkConstructorArguments()
797 else if (argTyped->getMemoryQualifier().writeonly) in checkConstructorArguments()
802 if (argTyped->getBasicType() == EbtVoid) in checkConstructorArguments()
871 const TIntermTyped *argTyped = arg->getAsTyped(); in checkConstructorArguments() local
872 ASSERT(argTyped != nullptr); in checkConstructorArguments()
874 if (argTyped->getBasicType() == EbtStruct) in checkConstructorArguments()
880 if (argTyped->getType().isArray()) in checkConstructorArguments()
[all …]