Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/HansKristian-Work/vkd3d-proton.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Kristian Arntzen <post@arntzen-software.no>2020-04-22 14:09:23 +0300
committerHans-Kristian Arntzen <post@arntzen-software.no>2020-04-22 17:22:28 +0300
commit89b1c8d1936df54ce036575676eb5041bd3751be (patch)
tree4d972d20e7f9f31d4db703b4027721bffdd92826
parentc3170731bf71bcaacfda969737d05c89a009f1ea (diff)
vkd3d: Functions take void as argument type in C.function-argument-type-fix
Signed-off-by: Hans-Kristian Arntzen <post@arntzen-software.no>
-rw-r--r--tests/d3d12.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/d3d12.c b/tests/d3d12.c
index ed4d017c..2d24f054 100644
--- a/tests/d3d12.c
+++ b/tests/d3d12.c
@@ -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);
}