Home
last modified time | relevance | path

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

/external/angle/src/compiler/translator/
DParseContext.cpp2939 TIntermTyped *typedCond = nullptr; in addLoop() local
2943 typedCond = cond->getAsTyped(); in addLoop()
2955 if (cond == nullptr || typedCond) in addLoop()
2957 if (type == ELoopDoWhile && typedCond) in addLoop()
2959 checkIsScalarBool(line, typedCond); in addLoop()
2962 ASSERT(mDiagnostics->numErrors() > 0 || typedCond == nullptr || in addLoop()
2963 (typedCond->getBasicType() == EbtBool && !typedCond->isArray() && in addLoop()
2964 !typedCond->isVector())); in addLoop()
2966 node = new TIntermLoop(type, init, typedCond, expr, EnsureLoopBodyBlock(body)); in addLoop()