This commit is contained in:
Branimir Karadžić 2015-02-08 11:02:39 -08:00
Родитель 6d2d04cad5
Коммит ef84ba3f1f
2 изменённых файлов: 12 добавлений и 7 удалений

13
.gitignore поставляемый
Просмотреть файл

@ -1,7 +1,6 @@
.build
.debug
.DS_Store
.git
.svn
tags
src/renderer_d3d12.*
.build
.debug
.DS_Store
.git
.svn
tags

Просмотреть файл

@ -5,6 +5,10 @@
#include "bgfx_p.h"
#if BGFX_CONFIG_RENDERER_DIRECT3D12
# include "../../d3d12/src/renderer_d3d12.cpp"
#else
namespace bgfx
{
RendererContextI* rendererCreateD3D12()
@ -16,3 +20,5 @@ namespace bgfx
{
}
} // namespace bgfx
#endif // BGFX_CONFIG_RENDERER_DIRECT3D12