mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2025-12-15 08:03:30 -08:00
vkd3d-shader/spirv: Explicitly ignore HLSL compilation options.
This commit is contained in:
Notes:
Henri Verbeet
2025-09-22 11:47:17 +02:00
Approved-by: Elizabeth Figura (@zfigura) Approved-by: Henri Verbeet (@hverbeet) Merge-Request: https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/1746
@@ -3254,6 +3254,14 @@ static struct spirv_compiler *spirv_compiler_create(struct vsir_program *program
|
|||||||
compiler->features = option->value;
|
compiler->features = option->value;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case VKD3D_SHADER_COMPILE_OPTION_PACK_MATRIX_ORDER:
|
||||||
|
case VKD3D_SHADER_COMPILE_OPTION_BACKWARD_COMPATIBILITY:
|
||||||
|
case VKD3D_SHADER_COMPILE_OPTION_CHILD_EFFECT:
|
||||||
|
case VKD3D_SHADER_COMPILE_OPTION_WARN_IMPLICIT_TRUNCATION:
|
||||||
|
case VKD3D_SHADER_COMPILE_OPTION_INCLUDE_EMPTY_BUFFERS_IN_EFFECTS:
|
||||||
|
/* Explicitly ignored for this target. */
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
WARN("Ignoring unrecognised option %#x with value %#x.\n", option->name, option->value);
|
WARN("Ignoring unrecognised option %#x with value %#x.\n", option->name, option->value);
|
||||||
break;
|
break;
|
||||||
|
|||||||
Reference in New Issue
Block a user