Home
last modified time | relevance | path

Searched refs:TIntermOperator (Results 1 – 4 of 4) sorted by relevance

/external/swiftshader/src/OpenGL/compiler/
Dintermediate.h459 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 …]
DValidateLimitations.h54 bool validateOperation(TIntermOperator* node, TIntermNode* operand);
DValidateLimitations.cpp450 bool ValidateLimitations::validateOperation(TIntermOperator* node, in validateOperation()
DIntermediate.cpp804 bool TIntermOperator::modifiesState() const in modifiesState()
835 bool TIntermOperator::isConstructor() const in isConstructor()