Home
last modified time | relevance | path

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

/external/angle/src/compiler/translator/
DTranslatorVulkan.cpp197 TIntermTyped *fragRotation) in RotateAndFlipBuiltinVariable() argument
222 if (fragRotation) in RotateAndFlipBuiltinVariable()
224 rotatedXY = new TIntermBinary(EOpMatrixTimesVector, fragRotation, builtinXY); in RotateAndFlipBuiltinVariable()
603 TIntermTyped *fragRotation = nullptr; in InsertFragCoordCorrection() local
606 fragRotation = specConst->getFragRotationMatrix(); in InsertFragCoordCorrection()
607 if (!fragRotation) in InsertFragCoordCorrection()
609 fragRotation = driverUniforms->getFragRotationMatrixRef(); in InsertFragCoordCorrection()
614 pivot, fragRotation); in InsertFragCoordCorrection()
1083 TIntermTyped *fragRotation = nullptr; in translateImpl() local
1086 fragRotation = specConst->getFragRotationMatrix(); in translateImpl()
[all …]
DTranslatorMetalDirect.cpp256 TIntermTyped *fragRotation) in RotateAndFlipBuiltinVariable() argument
281 if (fragRotation) in RotateAndFlipBuiltinVariable()
283 rotatedXY = new TIntermBinary(EOpMatrixTimesVector, fragRotation, builtinXY); in RotateAndFlipBuiltinVariable()
335 TIntermTyped *fragRotation = nullptr; in InsertFragCoordCorrection() local
338 fragRotation = specConst->getFragRotationMatrix(); in InsertFragCoordCorrection()
339 if (!fragRotation) in InsertFragCoordCorrection()
341 fragRotation = driverUniforms->getFragRotationMatrixRef(); in InsertFragCoordCorrection()
346 pivot, fragRotation); in InsertFragCoordCorrection()
952 TIntermTyped *fragRotation = nullptr; in translateImpl() local
955 fragRotation = specConst->getFragRotationMatrix(); in translateImpl()
[all …]
/external/angle/src/compiler/translator/tree_ops/
DRewriteDfdy.cpp136 TIntermTyped *fragRotation = mDriverUniforms->getFragRotationMatrixRef(); in visitAggregateWithRotation() local
142 halfRotationMat = new TIntermBinary(EOpIndexDirect, fragRotation, CreateIndexNode(0)); in visitAggregateWithRotation()
146 halfRotationMat = new TIntermBinary(EOpIndexDirect, fragRotation, CreateIndexNode(1)); in visitAggregateWithRotation()
/external/angle/src/compiler/translator/tree_ops/vulkan/
DRewriteInterpolateAtOffset.cpp112 TIntermTyped *fragRotation = mDriverUniforms->getFragRotationMatrixRef(); in visitAggregate() local
113 rotatedXY = new TIntermBinary(EOpMatrixTimesVector, fragRotation, flipXY); in visitAggregate()
/external/angle/src/libANGLE/renderer/vulkan/
DContextVk.cpp100 std::array<float, 8> fragRotation; member
4777 memcpy(&driverUniformsExt->fragRotation, in handleDirtyGraphicsDriverUniforms()
/external/angle/src/libANGLE/renderer/metal/
DContextMtl.mm2178 // NOTE(hqle): preRotation & fragRotation are unused.