Skip to content

Commit 730b031

Browse files
jhananitigcbot
authored andcommitted
Added SSH_Bindless for textures
Added SSH_Bindless for textures
1 parent 16ce861 commit 730b031

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

IGC/Compiler/CISACodeGen/helper.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ namespace IGC
198198
}
199199
inline bool IsSSHbindless(BufferType t)
200200
{
201-
return t == SSH_BINDLESS || t == SSH_BINDLESS_CONSTANT_BUFFER;
201+
return t == SSH_BINDLESS || t == SSH_BINDLESS_CONSTANT_BUFFER || t == SSH_BINDLESS_TEXTURE;
202202
}
203203

204204
bool IsUnsignedCmp(const llvm::CmpInst::Predicate Pred);

IGC/Compiler/CodeGenPublicEnums.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ namespace IGC
9595
STATELESS_A32,
9696
SSH_BINDLESS,
9797
SSH_BINDLESS_CONSTANT_BUFFER,
98+
SSH_BINDLESS_TEXTURE,
9899
BUFFER_TYPE_UNKNOWN = 31
99100
};
100101

0 commit comments

Comments
 (0)