HomeSort by relevance Sort by last modified time
    Searched refs:UnfoldSelect (Results 1 - 4 of 4) sorted by null

  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
UnfoldSelect.h 6 // UnfoldSelect is an AST traverser to output the select operator ?: as if-else statements
19 class UnfoldSelect : public TIntermTraverser
22 UnfoldSelect(TParseContext &context, OutputHLSL *outputHLSL);
UnfoldSelect.cpp 6 // UnfoldSelect is an AST traverser to output the select operator ?: as if-else statements
9 #include "compiler/UnfoldSelect.h"
16 UnfoldSelect::UnfoldSelect(TParseContext &context, OutputHLSL *outputHLSL) : mContext(context), mOutputHLSL(outputHLSL)
21 void UnfoldSelect::traverse(TIntermNode *node)
27 bool UnfoldSelect::visitSelection(Visit visit, TIntermSelection *node)
61 int UnfoldSelect::getTemporaryIndex()
OutputHLSL.h 18 class UnfoldSelect;
63 UnfoldSelect *mUnfoldSelect;
OutputHLSL.cpp 11 #include "compiler/UnfoldSelect.h"
29 mUnfoldSelect = new UnfoldSelect(context, this);
    [all...]

Completed in 146 milliseconds