mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-20 01:38:12 +00:00
(D3D) Change some cpp files to C
This commit is contained in:
parent
2fbc79e9f3
commit
c071731ce8
@ -22,6 +22,10 @@
|
||||
#include "../../libretro.h"
|
||||
#include "d3d_defines.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
struct LinkInfo
|
||||
{
|
||||
unsigned tex_w, tex_h;
|
||||
@ -72,5 +76,9 @@ extern renderchain_driver_t null_renderchain;
|
||||
bool renderchain_init_first(const renderchain_driver_t **renderchain_driver,
|
||||
void **renderchain_handle);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
|
@ -226,14 +226,14 @@ VIDEO DRIVER
|
||||
#if defined(HAVE_D3D)
|
||||
#include "../gfx/d3d/d3d_wrapper.cpp"
|
||||
#include "../gfx/d3d/d3d.cpp"
|
||||
#include "../gfx/d3d/render_chain_driver.cpp"
|
||||
#include "../gfx/d3d/render_chain_driver.c"
|
||||
#ifdef _XBOX
|
||||
#include "../gfx/d3d/render_chain_xdk.cpp"
|
||||
#endif
|
||||
#ifdef HAVE_CG
|
||||
#include "../gfx/d3d/render_chain_cg.cpp"
|
||||
#endif
|
||||
#include "../gfx/d3d/render_chain_null.cpp"
|
||||
#include "../gfx/d3d/render_chain_null.c"
|
||||
#endif
|
||||
|
||||
#if defined(GEKKO)
|
||||
|
Loading…
Reference in New Issue
Block a user