Merge pull request #2553 from amdrexu/bugfix
SPV: Change the key of extBuiltinMap to std::string
This commit is contained in:
commit
abb9befa1c
1 changed files with 1 additions and 1 deletions
|
|
@ -255,7 +255,7 @@ protected:
|
||||||
bool nanMinMaxClamp; // true if use NMin/NMax/NClamp instead of FMin/FMax/FClamp
|
bool nanMinMaxClamp; // true if use NMin/NMax/NClamp instead of FMin/FMax/FClamp
|
||||||
spv::Id stdBuiltins;
|
spv::Id stdBuiltins;
|
||||||
spv::Id nonSemanticDebugPrintf;
|
spv::Id nonSemanticDebugPrintf;
|
||||||
std::unordered_map<const char*, spv::Id> extBuiltinMap;
|
std::unordered_map<std::string, spv::Id> extBuiltinMap;
|
||||||
|
|
||||||
std::unordered_map<long long, spv::Id> symbolValues;
|
std::unordered_map<long long, spv::Id> symbolValues;
|
||||||
std::unordered_set<long long> rValueParameters; // set of formal function parameters passed as rValues,
|
std::unordered_set<long long> rValueParameters; // set of formal function parameters passed as rValues,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue