Home
last modified time | relevance | path

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

/external/chromium_org/third_party/angle/src/compiler/
Dintermediate.h404 class TIntermOperator : public TIntermTyped {
415 TIntermOperator(TOperator o) : TIntermTyped(TType(EbtFloat, EbpUndefined)), op(o) {} in TIntermOperator() function
416 TIntermOperator(TOperator o, TType& t) : TIntermTyped(t), op(o) {} in TIntermOperator() function
423 class TIntermBinary : public TIntermOperator {
425 TIntermBinary(TOperator o) : TIntermOperator(o), addIndexClamp(false) {} in TIntermBinary()
454 class TIntermUnary : public TIntermOperator {
456 …TIntermUnary(TOperator o, TType& t) : TIntermOperator(o, t), operand(0), useEmulatedFunction(false… in TIntermUnary()
457 TIntermUnary(TOperator o) : TIntermOperator(o), operand(0), useEmulatedFunction(false) {} in TIntermUnary()
487 class TIntermAggregate : public TIntermOperator {
489 … TIntermAggregate() : TIntermOperator(EOpNull), userDefined(false), useEmulatedFunction(false) { } in TIntermAggregate()
[all …]
DValidateLimitations.h46 bool validateOperation(TIntermOperator* node, TIntermNode* operand);
DValidateLimitations.cpp457 bool ValidateLimitations::validateOperation(TIntermOperator* node, in validateOperation()
DIntermediate.cpp807 bool TIntermOperator::isAssignment() const in isAssignment()
832 bool TIntermOperator::isConstructor() const in isConstructor()