Searched defs:TIntermUnary (Results 1 - 1 of 1) sorted by relevance

/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A Dintermediate.h192 class TIntermUnary;
217 virtual TIntermUnary* getAsUnaryNode() { return 0; }
399 class TIntermUnary : public TIntermOperator { class in inherits:TIntermOperator
401 TIntermUnary(TOperator o, TType& t) : TIntermOperator(o, t), operand(0) {} function in class:TIntermUnary
402 TIntermUnary(TOperator o) : TIntermOperator(o), operand(0) {} function in class:TIntermUnary
405 virtual TIntermUnary* getAsUnaryNode() { return this; }
511 virtual bool visitUnary(Visit visit, TIntermUnary*) {return true;}

Completed in 21 milliseconds