vkd3d-shader: Pass the interface info as part of the vkd3d_shader_compile_info structure chain.

Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Henri Verbeet
2020-06-19 16:13:33 +04:30
committed by Alexandre Julliard
parent 8ff9610fed
commit c4e6657c11
7 changed files with 13 additions and 20 deletions

View File

@ -168,7 +168,7 @@ int main(int argc, char **argv)
return 1;
}
ret = vkd3d_shader_compile_dxbc(&info, &spirv, options.compiler_options, NULL, NULL);
ret = vkd3d_shader_compile_dxbc(&info, &spirv, options.compiler_options, NULL);
vkd3d_shader_free_shader_code(&info.source);
if (ret < 0)
{