Searched refs:intermFunctionCall (Results 1 – 6 of 6) sorted by relevance
26 TGraphArgument* TDependencyGraph::createArgument(TIntermAggregate* intermFunctionCall, in createArgument() argument29 TGraphArgument* argument = new TGraphArgument(intermFunctionCall, argumentNumber); in createArgument()34 TGraphFunctionCall* TDependencyGraph::createFunctionCall(TIntermAggregate* intermFunctionCall) in createFunctionCall() argument36 TGraphFunctionCall* functionCall = new TGraphFunctionCall(intermFunctionCall); in createFunctionCall()
61 TGraphArgument(TIntermAggregate* intermFunctionCall, int argumentNumber) in TGraphArgument() argument62 : TGraphParentNode(intermFunctionCall) in TGraphArgument()77 TGraphFunctionCall(TIntermAggregate* intermFunctionCall) in TGraphFunctionCall() argument78 : TGraphParentNode(intermFunctionCall) {} in TGraphFunctionCall()166 TGraphArgument* createArgument(TIntermAggregate* intermFunctionCall, int argumentNumber);167 TGraphFunctionCall* createFunctionCall(TIntermAggregate* intermFunctionCall);
37 void TDependencyGraphBuilder::visitFunctionCall(TIntermAggregate* intermFunctionCall) in visitFunctionCall() argument39 TGraphFunctionCall* functionCall = mGraph->createFunctionCall(intermFunctionCall); in visitFunctionCall()43 TIntermSequence& intermArguments = intermFunctionCall->getSequence(); in visitFunctionCall()54 TGraphArgument* argument = mGraph->createArgument(intermFunctionCall, argumentNumber); in visitFunctionCall()
170 void visitFunctionCall(TIntermAggregate* intermFunctionCall);
77 bool RestrictFragmentShaderTiming::isSamplingOp(const TIntermAggregate* intermFunctionCall) const in isSamplingOp()79 return !intermFunctionCall->isUserDefined() && in isSamplingOp()80 mSamplingOps.find(intermFunctionCall->getName()) != mSamplingOps.end(); in isSamplingOp()
31 bool isSamplingOp(const TIntermAggregate* intermFunctionCall) const;