2015-03-05 23:34:39 -05:00
|
|
|
/*
|
|
|
|
* Copyright 2011-2015 Branimir Karadzic. All rights reserved.
|
|
|
|
* License: http://www.opensource.org/licenses/BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "bgfx_p.h"
|
2015-07-29 22:50:25 -04:00
|
|
|
|
2015-03-05 23:34:39 -05:00
|
|
|
#if BGFX_CONFIG_RENDERER_VULKAN
|
2015-06-11 12:38:17 -04:00
|
|
|
# include "../../bgfx-ext/src/renderer_vk.cpp"
|
2015-03-05 23:34:39 -05:00
|
|
|
#else
|
|
|
|
|
2015-03-22 01:11:59 -04:00
|
|
|
namespace bgfx { namespace vk
|
2015-03-05 23:34:39 -05:00
|
|
|
{
|
2015-03-22 01:11:59 -04:00
|
|
|
RendererContextI* rendererCreate()
|
2015-03-05 23:34:39 -05:00
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
2015-03-06 00:11:44 -05:00
|
|
|
|
2015-03-22 01:11:59 -04:00
|
|
|
void rendererDestroy()
|
2015-03-05 23:34:39 -05:00
|
|
|
{
|
|
|
|
}
|
2015-03-22 01:11:59 -04:00
|
|
|
} /* namespace vk */ } // namespace bgfx
|
2015-03-05 23:34:39 -05:00
|
|
|
|
|
|
|
#endif // BGFX_CONFIG_RENDERER_VULKAN
|