d3d11 render backend c++ -> c; raddbg build c++ -> c

This commit is contained in:
Ryan Fleury
2024-06-01 19:21:43 -07:00
parent ebc19ded62
commit 57da328c2a
13 changed files with 239 additions and 243 deletions
+6 -8
View File
@@ -3,12 +3,10 @@
#include "render_core.c"
#if LANG_CPP
# if R_BACKEND == R_BACKEND_STUB
# include "stub/render_stub.c"
# elif R_BACKEND == R_BACKEND_D3D11
# include "d3d11/render_d3d11.cpp"
# else
# error Renderer backend not specified.
# endif
#if R_BACKEND == R_BACKEND_STUB
# include "stub/render_stub.c"
#elif R_BACKEND == R_BACKEND_D3D11
# include "d3d11/render_d3d11.c"
#else
# error Renderer backend not specified.
#endif