HomeSort by relevance Sort by last modified time
    Searched defs:TOperator (Results 1 - 2 of 2) sorted by null

  /external/swiftshader/src/OpenGL/compiler/
intermediate.h 34 enum TOperator {
241 extern TOperator TypeToConstructorOperator(const TType &type);
242 extern const char* getOperatorString(TOperator op);
391 TIntermBranch(TOperator op, TIntermTyped* e) :
398 TOperator getFlowOp() { return flowOp; }
402 TOperator flowOp;
450 TIntermTyped* fold(TOperator, TIntermTyped*, TInfoSink&);
461 TOperator getOp() const { return op; }
462 void setOp(TOperator o) { op = o; }
468 TIntermOperator(TOperator o) : TIntermTyped(TType(EbtFloat, EbpUndefined)), op(o) {
    [all...]
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/Include/
intermediate.h 58 enum TOperator {
671 TIntermBranch(TOperator op, TIntermTyped* e) :
677 TOperator getFlowOp() const { return flowOp; }
680 TOperator flowOp;
737 virtual TIntermTyped* fold(TOperator, const TIntermTyped*) const;
738 virtual TIntermTyped* fold(TOperator, const TType&) const;
750 // Represent the independent aspects of a texturing TOperator
771 TOperator getOp() const { return op; }
911 TIntermOperator(TOperator o) : TIntermTyped(EbtFloat), op(o) {}
912 TIntermOperator(TOperator o, TType& t) : TIntermTyped(t), op(o) {
    [all...]

Completed in 76 milliseconds