Added Vulkan stub.

This commit is contained in:
Branimir Karadžić
2015-03-05 20:34:39 -08:00
parent a819a3f73e
commit 2ce33465d5
7 changed files with 43 additions and 3 deletions

22
src/renderer_vk.cpp Normal file
View File

@@ -0,0 +1,22 @@
/*
* Copyright 2011-2015 Branimir Karadzic. All rights reserved.
* License: http://www.opensource.org/licenses/BSD-2-Clause
*/
#include "bgfx_p.h"
#if BGFX_CONFIG_RENDERER_VULKAN
# include "../../vk/src/renderer_vk.cpp"
#else
namespace bgfx
{
RendererContextI* rendererCreateVK()
{
return NULL;
}
void rendererDestroyVK()
{
}
} // namespace bgfx
#endif // BGFX_CONFIG_RENDERER_VULKAN