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

  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
VariableInfo.cpp 22 switch (type.getNominalSize()) {
29 switch (type.getNominalSize()) {
42 switch (type.getNominalSize()) {
55 switch (type.getNominalSize()) {
OutputHLSL.cpp 92 int elementSize = type.isMatrix() ? type.getNominalSize() : 1;
828 switch (node->getLeft()->getNominalSize())
841 switch (node->getLeft()->getNominalSize())
850 switch (node->getLeft()->getNominalSize())
859 switch (node->getLeft()->getNominalSize())
918 switch (node->getOperand()->getType().getNominalSize())
929 switch (node->getOperand()->getType().getNominalSize())
940 switch (node->getOperand()->getType().getNominalSize())
    [all...]
Intermediate.cpp 323 child->getNominalSize(),
520 TType type(promoteTo, node->getPrecision(), EvqTemporary, node->getNominalSize(), node->isMatrix(), node->isArray());
886 int size = std::max(left->getNominalSize(), right->getNominalSize());
926 if (left->getNominalSize() != right->getNominalSize()) {
929 if (left->getNominalSize() != 1 && right->getNominalSize() != 1)
    [all...]
OutputGLSL.cpp 18 out << type.getNominalSize();
29 out << type.getNominalSize();
259 ASSERT(element->getNominalSize() == 1);
320 switch (node->getOperand()->getType().getNominalSize())
331 switch (node->getOperand()->getType().getNominalSize())
342 switch (node->getOperand()->getType().getNominalSize())
intermediate.h 250 int getNominalSize() const { return type.getNominalSize(); }
SymbolTable.cpp 50 mangledName += static_cast<char>('0' + getNominalSize());
parseConst.cpp 122 matrixSize = node->getType().getNominalSize();
glslang.y 244 if (($1->isVector() || $1->isMatrix()) && $1->getType().getNominalSize() <= $3->getAsConstantUnion()->getUnionArrayPointer()->getIConst() && !$1->isArray() ) {
281 $$->setType(TType($1->getBasicType(), $1->getPrecision(), EvqTemporary, $1->getNominalSize(), $1->isMatrix()));
286 $$->setType(TType($1->getBasicType(), $1->getPrecision(), EvqConst, $1->getNominalSize()));
288 $$->setType(TType($1->getBasicType(), $1->getPrecision(), EvqTemporary, $1->getNominalSize()));
307 if (! context->parseVectorFields(*$3.string, $1->getNominalSize(), fields, $3.line)) {
337 if (! context->parseMatrixFields(*$3.string, $1->getNominalSize(), fields, $3.line)) {
352 $$->setType(TType($1->getBasicType(), $1->getPrecision(),EvqTemporary, $1->getNominalSize()));
355 unionArray->setIConst(fields.col * $1->getNominalSize() + fields.row);
    [all...]
Types.h 169 int getNominalSize() const { return size; }
ParseHelper.cpp 411 if (node->getBasicType() == EbtInt && node->getNominalSize() == 1)
    [all...]

Completed in 197 milliseconds