d3dcompiler: Fail parsing reflection data for sm51 in versions below 47.

Signed-off-by: Paul Gofman <pgofman@codeweavers.com>
Signed-off-by: Matteo Bruni <mbruni@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Paul Gofman 2020-08-08 02:19:49 +03:00 committed by Alexandre Julliard
parent 85e0a09cce
commit d95920e8d6
1 changed files with 8 additions and 0 deletions

View File

@ -1441,6 +1441,14 @@ static HRESULT d3dcompiler_parse_rdef(struct d3dcompiler_shader_reflection *r, c
target_version = r->target & D3DCOMPILER_SHADER_TARGET_VERSION_MASK;
#if D3D_COMPILER_VERSION < 47
if (target_version >= 0x501)
{
WARN("Target version %#x is not supported in d3dcompiler %u.\n", target_version, D3D_COMPILER_VERSION);
return E_INVALIDARG;
}
#endif
read_dword(&ptr, &r->flags);
TRACE("Flags: %u\n", r->flags);