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

  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
intermediate.h 361 class TIntermOperator : public TIntermTyped {
370 TIntermOperator(TOperator o) : TIntermTyped(TType(EbtFloat, EbpUndefined)), op(o) {}
371 TIntermOperator(TOperator o, TType& t) : TIntermTyped(t), op(o) {}
378 class TIntermBinary : public TIntermOperator {
380 TIntermBinary(TOperator o) : TIntermOperator(o) {}
399 class TIntermUnary : public TIntermOperator {
401 TIntermUnary(TOperator o, TType& t) : TIntermOperator(o, t), operand(0) {}
402 TIntermUnary(TOperator o) : TIntermOperator(o), operand(0) {}
421 class TIntermAggregate : public TIntermOperator {
423 TIntermAggregate() : TIntermOperator(EOpNull), userDefined(false), pragmaTable(0) {
    [all...]
ValidateLimitations.h 49 bool validateOperation(TIntermOperator* node, TIntermNode* operand);
ValidateLimitations.cpp 413 bool ValidateLimitations::validateOperation(TIntermOperator* node,
Intermediate.cpp 764 bool TIntermOperator::modifiesState() const
789 bool TIntermOperator::isConstructor() const
    [all...]

Completed in 31 milliseconds