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

/external/chromium_org/third_party/angle/src/compiler/translator/
H A Dintermediate.h207 class TIntermUnary;
238 virtual TIntermUnary* getAsUnaryNode() { return 0; }
505 class TIntermUnary : public TIntermOperator { class in inherits:TIntermOperator
507 TIntermUnary(TOperator o, const TType& t) : TIntermOperator(o, t), operand(0), useEmulatedFunction(false) {} function in class:TIntermUnary
508 TIntermUnary(TOperator o) : TIntermOperator(o), operand(0), useEmulatedFunction(false) {} function in class:TIntermUnary
511 virtual TIntermUnary* getAsUnaryNode() { return this; }
650 virtual bool visitUnary(Visit visit, TIntermUnary*) {return true;}
707 virtual bool visitUnary(Visit visit, TIntermUnary*) { return depthCheck(); }

Completed in 144 milliseconds