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 16ce861 commit 730b031Copy full SHA for 730b031
IGC/Compiler/CISACodeGen/helper.h
@@ -198,7 +198,7 @@ namespace IGC
198
}
199
inline bool IsSSHbindless(BufferType t)
200
{
201
- return t == SSH_BINDLESS || t == SSH_BINDLESS_CONSTANT_BUFFER;
+ return t == SSH_BINDLESS || t == SSH_BINDLESS_CONSTANT_BUFFER || t == SSH_BINDLESS_TEXTURE;
202
203
204
bool IsUnsignedCmp(const llvm::CmpInst::Predicate Pred);
IGC/Compiler/CodeGenPublicEnums.h
@@ -95,6 +95,7 @@ namespace IGC
95
STATELESS_A32,
96
SSH_BINDLESS,
97
SSH_BINDLESS_CONSTANT_BUFFER,
98
+ SSH_BINDLESS_TEXTURE,
99
BUFFER_TYPE_UNKNOWN = 31
100
};
101
0 commit comments