Home
last modified time | relevance | path

Searched refs:mEmulatedFunctions (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/angle/src/compiler/translator/
H A DBuiltInFunctionEmulator.cpp56 mEmulatedFunctions[uniqueId.get()] = std::string(emulatedFunctionDefinition); in addEmulatedFunction()
64 mEmulatedFunctions[uniqueId.get()] = std::string(emulatedFunctionDefinition); in addEmulatedFunctionWithDependency()
95 const auto &result = mEmulatedFunctions.find(uniqueId); in findEmulatedFunction()
96 if (result != mEmulatedFunctions.end()) in findEmulatedFunction()
136 if (mEmulatedFunctions.empty() && mQueryFunctions.empty()) in markBuiltInFunctionsForEmulation()
H A DBuiltInFunctionEmulator.h65 std::map<int, std::string> mEmulatedFunctions; variable