Skip to content

Commit 633b116

Browse files
authored
Fix int8 buffers support detection (#6404)
Summary: ## Context As title. Fixes a small type which prevented us from detecting that int8 buffers are not supported. Differential Revision: D64704443
1 parent 10a8e24 commit 633b116

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backends/vulkan/runtime/vk_api/Adapter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ class Adapter final {
182182
}
183183

184184
inline bool has_full_int8_buffers_support() {
185-
return supports_16bit_storage_buffers() && supports_int8_shader_types();
185+
return supports_8bit_storage_buffers() && supports_int8_shader_types();
186186
}
187187

188188
// Command Buffer Submission

0 commit comments

Comments
 (0)