Searched refs:TIntermOperator (Results 1 – 4 of 4) sorted by relevance
/external/swiftshader/src/OpenGL/compiler/ |
D | intermediate.h | 459 class TIntermOperator : public TIntermTyped { 468 TIntermOperator(TOperator o) : TIntermTyped(TType(EbtFloat, EbpUndefined)), op(o) {} in TIntermOperator() function 469 TIntermOperator(TOperator o, TType& t) : TIntermTyped(t), op(o) {} in TIntermOperator() function 476 class TIntermBinary : public TIntermOperator { 478 TIntermBinary(TOperator o) : TIntermOperator(o) {} in TIntermBinary() 507 class TIntermUnary : public TIntermOperator { 509 TIntermUnary(TOperator o, TType& t) : TIntermOperator(o, t), operand(0) {} in TIntermUnary() 510 TIntermUnary(TOperator o) : TIntermOperator(o), operand(0) {} in TIntermUnary() 539 class TIntermAggregate : public TIntermOperator { 541 TIntermAggregate() : TIntermOperator(EOpNull), userDefined(false) { endLine = { 0, 0, 0, 0 }; } in TIntermAggregate() [all …]
|
D | ValidateLimitations.h | 54 bool validateOperation(TIntermOperator* node, TIntermNode* operand);
|
D | ValidateLimitations.cpp | 450 bool ValidateLimitations::validateOperation(TIntermOperator* node, in validateOperation()
|
D | Intermediate.cpp | 804 bool TIntermOperator::modifiesState() const in modifiesState() 835 bool TIntermOperator::isConstructor() const in isConstructor()
|