2015-01-25 01:19:42 -05:00
|
|
|
/*
|
|
|
|
* Copyright 2011-2015 Branimir Karadzic. All rights reserved.
|
|
|
|
* License: http://www.opensource.org/licenses/BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "bgfx_p.h"
|
|
|
|
|
2015-02-08 14:02:39 -05:00
|
|
|
#if BGFX_CONFIG_RENDERER_DIRECT3D12
|
|
|
|
# include "../../d3d12/src/renderer_d3d12.cpp"
|
|
|
|
#else
|
|
|
|
|
2015-03-22 01:11:59 -04:00
|
|
|
namespace bgfx { namespace d3d12
|
2015-01-25 01:19:42 -05:00
|
|
|
{
|
2015-03-22 01:11:59 -04:00
|
|
|
RendererContextI* rendererCreate()
|
2015-01-25 01:19:42 -05:00
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2015-03-22 01:11:59 -04:00
|
|
|
void rendererDestroy()
|
2015-01-25 01:19:42 -05:00
|
|
|
{
|
|
|
|
}
|
2015-03-22 01:11:59 -04:00
|
|
|
} /* namespace d3d12 */ } // namespace bgfx
|
2015-02-08 14:02:39 -05:00
|
|
|
|
|
|
|
#endif // BGFX_CONFIG_RENDERER_DIRECT3D12
|