vkd3d: Functions take void as argument type in C.

Signed-off-by: Hans-Kristian Arntzen <post@arntzen-software.no>
This commit is contained in:
Hans-Kristian Arntzen 2020-04-22 13:09:23 +02:00
parent 4595cacc79
commit 02fb0d2974
1 changed files with 2 additions and 2 deletions

View File

@ -40626,12 +40626,12 @@ static void test_stencil_export(bool use_dxil)
destroy_test_context(&context);
}
static void test_stencil_export_dxbc()
static void test_stencil_export_dxbc(void)
{
test_stencil_export(false);
}
static void test_stencil_export_dxil()
static void test_stencil_export_dxil(void)
{
test_stencil_export(true);
}