We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9149da4 commit da249a0Copy full SHA for da249a0
IGC/common/Types.hpp
@@ -46,14 +46,17 @@ class ShaderHash
46
: asmHash(0)
47
, nosHash(0)
48
, psoHash(0)
49
+ , perStagePsoHash(0)
50
{}
51
QWORD getAsmHash() const { return asmHash; }
52
QWORD getNosHash() const { return nosHash; }
53
QWORD getPsoHash() const { return psoHash; }
54
+ QWORD getPerStagePsoHash() const { return perStagePsoHash; }
55
56
QWORD asmHash;
57
QWORD nosHash;
58
QWORD psoHash;
59
+ QWORD perStagePsoHash;
60
};
61
62
enum class SIMDMode : unsigned char
0 commit comments