Home
last modified time | relevance | path

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

/external/angle/src/compiler/translator/tree_ops/
DRewriteCubeMapSamplersAs2DArray.cpp504 TIntermSymbol *absX = new TIntermSymbol(CreateTempVariable(mSymbolTable, floatType)); in declareCoordTranslationFunction()
505 TIntermSymbol *absY = new TIntermSymbol(CreateTempVariable(mSymbolTable, floatType)); in declareCoordTranslationFunction()
506 TIntermSymbol *absZ = new TIntermSymbol(CreateTempVariable(mSymbolTable, floatType)); in declareCoordTranslationFunction()
523 TIntermSymbol *recipOuter = new TIntermSymbol(CreateTempVariable(mSymbolTable, mat3Type)); in declareCoordTranslationFunction()
526 TIntermSymbol *pRecipVar = new TIntermSymbol(CreateTempVariable(mSymbolTable, vec3Type)); in declareCoordTranslationFunction()
548 dPDXdx = new TIntermSymbol(CreateTempVariable(mSymbolTable, vec3Type)); in declareCoordTranslationFunction()
549 dPDYdx = new TIntermSymbol(CreateTempVariable(mSymbolTable, vec3Type)); in declareCoordTranslationFunction()
550 dPDZdx = new TIntermSymbol(CreateTempVariable(mSymbolTable, vec3Type)); in declareCoordTranslationFunction()
551 dPDXdy = new TIntermSymbol(CreateTempVariable(mSymbolTable, vec3Type)); in declareCoordTranslationFunction()
552 dPDYdy = new TIntermSymbol(CreateTempVariable(mSymbolTable, vec3Type)); in declareCoordTranslationFunction()
[all …]
DUnfoldShortCircuitToIf.cpp79 TVariable *resultVariable = CreateTempVariable(mSymbolTable, boolType); in visitBinary()
106 TVariable *resultVariable = CreateTempVariable(mSymbolTable, boolType); in visitBinary()
DRewriteDoWhile.cpp76 TVariable *conditionVariable = CreateTempVariable(mSymbolTable, boolType); in visitBlock()
DSimplifyLoopConditions.cpp153 TVariable *conditionVariable = CreateTempVariable(mSymbolTable, boolType); in traverseLoop()
DScalarizeVecAndMatConstructorArgs.cpp206 TVariable *variable = CreateTempVariable(mSymbolTable, type); in createTempVariable()
DInitializeVariables.cpp110 CreateTempVariable(symbolTable, highPrecisionSupported ? highpIndexType : mediumpIndexType); in AddArrayZeroInitForLoop()
DRewriteAtomicCounters.cpp552 TVariable *modified = CreateTempVariable(mSymbolTable, mAtomicCounterType); in convertFunctionArgument()
DRewriteRowMajorMatrices.cpp110 TVariable *temp = CreateTempVariable(symbolTable, &node->getType()); in CopyToTempVariable()
1056 CreateTempVariable(mSymbolTable, &originalExpression->getAsTyped()->getType()); in transformExpression()
/external/angle/src/compiler/translator/tree_util/
DIntermNode_util.cpp143 TVariable *CreateTempVariable(TSymbolTable *symbolTable, const TType *type) in CreateTempVariable() function
151 TVariable *CreateTempVariable(TSymbolTable *symbolTable, const TType *type, TQualifier qualifier) in CreateTempVariable() function
156 return CreateTempVariable(symbolTable, type); in CreateTempVariable()
160 return CreateTempVariable(symbolTable, typeWithQualifier); in CreateTempVariable()
202 TVariable *variable = CreateTempVariable(symbolTable, type, qualifier); in DeclareTempVariable()
213 CreateTempVariable(symbolTable, new TType(initializer->getType()), qualifier); in DeclareTempVariable()
DIntermNode_util.h30 TVariable *CreateTempVariable(TSymbolTable *symbolTable, const TType *type);
31 TVariable *CreateTempVariable(TSymbolTable *symbolTable, const TType *type, TQualifier qualifier);
DReplaceShadowingVariables.cpp98 CreateTempVariable(mSymbolTable, &symNode->variable().getType()), in visitDeclaration()
/external/angle/src/compiler/translator/
DTranslatorVulkan.cpp512 TVariable *ndc = CreateTempVariable(symbolTable, vec2Type); in AddBresenhamEmulationVS()
526 TVariable *windowCoords = CreateTempVariable(symbolTable, vec2Type); in AddBresenhamEmulationVS()
538 TVariable *clampedWindowCoords = CreateTempVariable(symbolTable, vec2Type); in AddBresenhamEmulationVS()
634 TVariable *p = CreateTempVariable(symbolTable, vec2Type); in AddBresenhamEmulationFS()
641 TVariable *d = CreateTempVariable(symbolTable, vec2Type); in AddBresenhamEmulationFS()
647 TVariable *f = CreateTempVariable(symbolTable, vec2Type); in AddBresenhamEmulationFS()
652 TVariable *p_ = CreateTempVariable(symbolTable, vec2Type); in AddBresenhamEmulationFS()
657 TVariable *d_ = CreateTempVariable(symbolTable, vec2Type); in AddBresenhamEmulationFS()
662 TVariable *f_ = CreateTempVariable(symbolTable, vec2Type); in AddBresenhamEmulationFS()
672 TVariable *i = CreateTempVariable(symbolTable, vec2Type); in AddBresenhamEmulationFS()