dx9
Some checks failed
pyrite-dev/milsko/pipeline/head There was a failure building this commit

This commit is contained in:
IoIxD 2026-09-17 20:58:41 -07:00
commit f2dd0ac3f1
13 changed files with 698 additions and 15 deletions

View file

@ -178,6 +178,7 @@ new_object("src/widget/window.c");
new_object("src/widget/opengl.c");
new_object("src/widget/vulkan.c");
new_object("src/widget/directx.c");
if (param_get("opengl")) {
add_cflags("-DMW_OPENGL");
@ -185,6 +186,9 @@ if (param_get("opengl")) {
if (param_get("vulkan")) {
add_cflags("-DMW_VULKAN");
}
if (param_get("directx")) {
add_cflags("-DMW_DIRECTX");
}
new_object("src/dialog/*.c");
@ -230,4 +234,8 @@ if (param_get("vulkan")) {
new_example("examples/vkdemos/vulkan");
}
if (param_get("directx")) {
new_example("examples/dxdemos/directx9");
}
1;