Skip to content
Snippets Groups Projects
Commit 058aec3a authored by Isabella Bosia's avatar Isabella Bosia Committed by Alexandre Julliard
Browse files

vkd3d-shader: Recognize skipOptimization global flag.

parent cf3388da
No related branches found
No related tags found
No related merge requests found
......@@ -348,6 +348,7 @@ static void shader_dump_global_flags(struct vkd3d_string_buffer *buffer, DWORD g
{VKD3DSGF_FORCE_EARLY_DEPTH_STENCIL, "forceEarlyDepthStencil"},
{VKD3DSGF_ENABLE_RAW_AND_STRUCTURED_BUFFERS, "enableRawAndStructuredBuffers"},
{VKD3DSGF_ENABLE_MINIMUM_PRECISION, "enableMinimumPrecision"},
{VKD3DSGF_SKIP_OPTIMIZATION, "skipOptimization"},
};
for (i = 0; i < ARRAY_SIZE(global_flag_info); ++i)
......
......@@ -451,6 +451,7 @@ enum vkd3d_shader_global_flags
VKD3DSGF_REFACTORING_ALLOWED = 0x01,
VKD3DSGF_FORCE_EARLY_DEPTH_STENCIL = 0x04,
VKD3DSGF_ENABLE_RAW_AND_STRUCTURED_BUFFERS = 0x08,
VKD3DSGF_SKIP_OPTIMIZATION = 0x10,
VKD3DSGF_ENABLE_MINIMUM_PRECISION = 0x20
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment