Home
last modified time | relevance | path

Searched refs:intermFunctionCall (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/third_party/angle/src/compiler/depgraph/
DDependencyGraph.cpp26 TGraphArgument* TDependencyGraph::createArgument(TIntermAggregate* intermFunctionCall, in createArgument() argument
29 TGraphArgument* argument = new TGraphArgument(intermFunctionCall, argumentNumber); in createArgument()
34 TGraphFunctionCall* TDependencyGraph::createFunctionCall(TIntermAggregate* intermFunctionCall) in createFunctionCall() argument
36 TGraphFunctionCall* functionCall = new TGraphFunctionCall(intermFunctionCall); in createFunctionCall()
DDependencyGraph.h61 TGraphArgument(TIntermAggregate* intermFunctionCall, int argumentNumber) in TGraphArgument() argument
62 : TGraphParentNode(intermFunctionCall) in TGraphArgument()
77 TGraphFunctionCall(TIntermAggregate* intermFunctionCall) in TGraphFunctionCall() argument
78 : TGraphParentNode(intermFunctionCall) {} in TGraphFunctionCall()
166 TGraphArgument* createArgument(TIntermAggregate* intermFunctionCall, int argumentNumber);
167 TGraphFunctionCall* createFunctionCall(TIntermAggregate* intermFunctionCall);
DDependencyGraphBuilder.cpp37 void TDependencyGraphBuilder::visitFunctionCall(TIntermAggregate* intermFunctionCall) in visitFunctionCall() argument
39 TGraphFunctionCall* functionCall = mGraph->createFunctionCall(intermFunctionCall); in visitFunctionCall()
43 TIntermSequence& intermArguments = intermFunctionCall->getSequence(); in visitFunctionCall()
54 TGraphArgument* argument = mGraph->createArgument(intermFunctionCall, argumentNumber); in visitFunctionCall()
DDependencyGraphBuilder.h170 void visitFunctionCall(TIntermAggregate* intermFunctionCall);
/external/chromium_org/third_party/angle/src/compiler/timing/
DRestrictFragmentShaderTiming.cpp77 bool RestrictFragmentShaderTiming::isSamplingOp(const TIntermAggregate* intermFunctionCall) const in isSamplingOp()
79 return !intermFunctionCall->isUserDefined() && in isSamplingOp()
80 mSamplingOps.find(intermFunctionCall->getName()) != mSamplingOps.end(); in isSamplingOp()
DRestrictFragmentShaderTiming.h31 bool isSamplingOp(const TIntermAggregate* intermFunctionCall) const;