Home
last modified time | relevance | path

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

/external/angle/src/compiler/translator/
DOperator.h173 EOpDFdx, // Fragment only, OES_standard_derivatives extension enumerator
DOperator.cpp249 case EOpDFdx: in GetOperatorString()
DASTMetadataHLSL.cpp104 case EOpDFdx: in visitUnary()
DOutputGLSLBase.cpp849 case EOpDFdx: in visitUnary()
DTranslatorVulkan.cpp638 TIntermUnary *dfdx = new TIntermUnary(EOpDFdx, new TIntermSymbol(p), nullptr); in AddBresenhamEmulationFS()
DOutputHLSL.cpp1963 case EOpDFdx: in visitUnary()
DSymbolTable_ESSL_autogen.cpp6818 EOpDFdx,
6826 EOpDFdx,
6834 EOpDFdx,
6842 EOpDFdx,
9837 EOpDFdx,
9845 EOpDFdx,
9853 EOpDFdx,
9861 EOpDFdx,
DIntermNode.cpp3081 case EOpDFdx: in foldUnaryComponentWise()
DSymbolTable_autogen.cpp10371 EOpDFdx,
10379 EOpDFdx,
10387 EOpDFdx,
10395 EOpDFdx,
16114 EOpDFdx,
16122 EOpDFdx,
16130 EOpDFdx,
16138 EOpDFdx,
/external/angle/src/compiler/translator/tree_ops/
DRewriteCubeMapSamplersAs2DArray.cpp557 new TIntermUnary(EOpDFdx, IndexDirect(recipOuter, 0)->deepCopy(), nullptr)); in declareCoordTranslationFunction()
560 new TIntermUnary(EOpDFdx, IndexDirect(recipOuter, 1)->deepCopy(), nullptr)); in declareCoordTranslationFunction()
563 new TIntermUnary(EOpDFdx, IndexDirect(recipOuter, 2)->deepCopy(), nullptr)); in declareCoordTranslationFunction()
/external/swiftshader/src/OpenGL/compiler/
DInitialize.cpp289 …symbolTable.insertBuiltIn(ESSL1_BUILTINS, EOpDFdx, "GL_OES_standard_derivatives", genType, "dFdx",… in InsertBuiltInFunctions()
364 symbolTable.insertBuiltIn(ESSL3_BUILTINS, EOpDFdx, genType, "dFdx", genType); in InsertBuiltInFunctions()
Dintermediate.h170 EOpDFdx, // Fragment only, OES_standard_derivatives extension enumerator
DIntermediate.cpp287 case EOpDFdx: return "dFdx"; in getOperatorString()
DOutputASM.cpp1180 …case EOpDFdx: if(visit == PostVisit) emit(sw::Shader::OPCODE_DFDX, result, arg); break; in visitUnary()