microsoft/compiler: SM6.6 is supported

Reviewed-by: Giancarlo Devich <gdevich@microsoft.com>
Reviewed-by: Boris Brezillon <boris.brezillon@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18022>
This commit is contained in:
Jesse Natalie 2022-08-11 13:02:27 -07:00 committed by Marge Bot
parent 8a4cba7143
commit 01b6676d5f
2 changed files with 2 additions and 1 deletions

View file

@ -5928,7 +5928,7 @@ type_size_vec4(const struct glsl_type *type, bool bindless)
static const unsigned dxil_validator_min_capable_version = DXIL_VALIDATOR_1_4;
static const unsigned dxil_validator_max_capable_version = DXIL_VALIDATOR_1_7;
static const unsigned dxil_min_shader_model = SHADER_MODEL_6_1;
static const unsigned dxil_max_shader_model = SHADER_MODEL_6_5;
static const unsigned dxil_max_shader_model = SHADER_MODEL_6_6;
bool
nir_to_dxil(struct nir_shader *s, const struct nir_to_dxil_options *opts,

View file

@ -88,6 +88,7 @@ enum dxil_shader_model {
SHADER_MODEL_6_3,
SHADER_MODEL_6_4,
SHADER_MODEL_6_5,
SHADER_MODEL_6_6,
};
struct nir_to_dxil_options {