HomeSort by relevance Sort by last modified time
    Searched refs:TIntermOperator (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/angle/src/compiler/translator/
ValidateLimitations.h 42 bool validateOperation(TIntermOperator *node, TIntermNode *operand);
intermediate.h 453 class TIntermOperator : public TIntermTyped {
464 TIntermOperator(TOperator o) : TIntermTyped(TType(EbtFloat, EbpUndefined)), op(o) {}
465 TIntermOperator(TOperator o, const TType& t) : TIntermTyped(t), op(o) {}
472 class TIntermBinary : public TIntermOperator {
474 TIntermBinary(TOperator o) : TIntermOperator(o), addIndexClamp(false) {}
505 class TIntermUnary : public TIntermOperator {
507 TIntermUnary(TOperator o, const TType& t) : TIntermOperator(o, t), operand(0), useEmulatedFunction(false) {}
508 TIntermUnary(TOperator o) : TIntermOperator(o), operand(0), useEmulatedFunction(false) {}
540 class TIntermAggregate : public TIntermOperator {
542 TIntermAggregate() : TIntermOperator(EOpNull), userDefined(false), useEmulatedFunction(false) {
    [all...]
ValidateLimitations.cpp 411 bool ValidateLimitations::validateOperation(TIntermOperator *node,
Intermediate.cpp 905 bool TIntermOperator::isAssignment() const
930 bool TIntermOperator::isConstructor() const
    [all...]

Completed in 37 milliseconds