Searched refs:EbtVoid (Results 1 – 8 of 8) sorted by relevance
/external/swiftshader/src/OpenGL/compiler/ |
D | glslang.y | 381 TType type(EbtVoid, EbpUndefined); 388 TType type(EbtVoid, EbpUndefined); 660 if ($2.param.type->getBasicType() != EbtVoid) 670 if ($3.param.type->getBasicType() == EbtVoid) { 713 if ($1.type == EbtVoid) { 899 $$.setBasic(EbtVoid, EvqAttribute, @1); 906 $$.setBasic(EbtVoid, EvqVaryingOut, @1); 908 $$.setBasic(EbtVoid, EvqVaryingIn, @1); 915 $$.setBasic(EbtVoid, EvqInvariantVaryingOut, @1); 917 $$.setBasic(EbtVoid, EvqInvariantVaryingIn, @1); [all …]
|
D | BaseTypes.h | 48 EbtVoid, enumerator 109 case EbtVoid: return "void"; in getBasicString()
|
D | glslang_tab.cpp | 2614 TType type(EbtVoid, EbpUndefined); in yyparse() 2626 TType type(EbtVoid, EbpUndefined); in yyparse() 3166 if ((yyvsp[0].interm).param.type->getBasicType() != EbtVoid) in yyparse() 3181 if ((yyvsp[0].interm).param.type->getBasicType() == EbtVoid) { in yyparse() 3227 if ((yyvsp[-1].interm.type).type == EbtVoid) { in yyparse() 3520 (yyval.interm.type).setBasic(EbtVoid, EvqAttribute, (yylsp[0])); in yyparse() 3532 (yyval.interm.type).setBasic(EbtVoid, EvqVaryingOut, (yylsp[0])); in yyparse() 3534 (yyval.interm.type).setBasic(EbtVoid, EvqVaryingIn, (yylsp[0])); in yyparse() 3546 (yyval.interm.type).setBasic(EbtVoid, EvqInvariantVaryingOut, (yylsp[-1])); in yyparse() 3548 (yyval.interm.type).setBasic(EbtVoid, EvqInvariantVaryingIn, (yylsp[-1])); in yyparse() [all …]
|
D | ParseHelper.cpp | 418 else if(node->getBasicType() == EbtVoid) in lValueErrorCheck() 631 if (typed->getBasicType() == EbtVoid) { in constructorErrorCheck() 645 if(type == EbtVoid) { in voidErrorCheck() 1925 if(mCurrentFunctionType->getBasicType() != EbtVoid && !mFunctionReturnsValue) in addFunctionDefinition() 1986 if(function->getReturnType().getBasicType() != EbtVoid) in parseFunctionPrototype() 2993 type.setBasic(EbtVoid, mergedQualifier, storageLoc); in joinInterpolationQualifiers() 3565 if(mCurrentFunctionType->getBasicType() != EbtVoid) in addBranch() 3582 if(mCurrentFunctionType->getBasicType() == EbtVoid) in addBranch() 3647 TType type(EbtVoid, EbpUndefined); // use this to get the type back in addFunctionCallOrMethod()
|
D | intermediate.h | 613 …TIntermTyped(TType(EbtVoid, EbpUndefined)), condition(cond), trueBlock(trueB), falseBlock(falseB) … in TIntermSelection() 622 bool usesTernaryOperator() const { return getBasicType() != EbtVoid; } in usesTernaryOperator()
|
D | ConstantUnion.h | 30 type = EbtVoid; in ConstantUnion()
|
D | SymbolTable.h | 144 returnType(TType(EbtVoid, EbpUndefined)), in TFunction()
|
D | OutputASM.cpp | 1216 if(function->ret && function->ret->getType().getBasicType() != EbtVoid) in visitAggregate()
|