microsoft/clc: Flip on capabilities to prevent warning spew

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26582>
This commit is contained in:
Jesse Natalie 2023-12-07 15:17:33 -08:00 committed by Marge Bot
parent 37c0e8beda
commit 7cd0553572

View file

@ -662,6 +662,11 @@ clc_spirv_to_dxil(struct clc_libclc *lib,
.kernel_image_read_write = true,
.literal_sampler = true,
.printf = true,
// These aren't fully supported, but silence warnings about them from
// code that doesn't really use them.
.linkage = true,
.generic_pointers = true,
},
};
unsigned supported_int_sizes = (16 | 32 | 64);