19 lines
320 B
C++
19 lines
320 B
C++
|
/*
|
||
|
* Copyright 2011-2016 Branimir Karadzic. All rights reserved.
|
||
|
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
|
||
|
*/
|
||
|
|
||
|
#include "bgfx_p.h"
|
||
|
|
||
|
namespace bgfx { namespace vk
|
||
|
{
|
||
|
RendererContextI* rendererCreate()
|
||
|
{
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
|
void rendererDestroy()
|
||
|
{
|
||
|
}
|
||
|
} /* namespace vk */ } // namespace bgfx
|