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_dx11/src/compiler/
intermediate.h 387 class TIntermOperator : public TIntermTyped {
396 TIntermOperator(TOperator o) : TIntermTyped(TType(EbtFloat, EbpUndefined)), op(o) {}
397 TIntermOperator(TOperator o, TType& t) : TIntermTyped(t), op(o) {}
404 class TIntermBinary : public TIntermOperator {
406 TIntermBinary(TOperator o) : TIntermOperator(o), addIndexClamp(false) {}
431 class TIntermUnary : public TIntermOperator {
433 TIntermUnary(TOperator o, TType& t) : TIntermOperator(o, t), operand(0), useEmulatedFunction(false) {}
434 TIntermUnary(TOperator o) : TIntermOperator(o), operand(0), useEmulatedFunction(false) {}
460 class TIntermAggregate : public TIntermOperator {
462 TIntermAggregate() : TIntermOperator(EOpNull), userDefined(false), useEmulatedFunction(false) {
    [all...]
ValidateLimitations.h 46 bool validateOperation(TIntermOperator* node, TIntermNode* operand);
ValidateLimitations.cpp 457 bool ValidateLimitations::validateOperation(TIntermOperator* node,
Intermediate.cpp 750 bool TIntermOperator::modifiesState() const
775 bool TIntermOperator::isConstructor() const
    [all...]

Completed in 274 milliseconds