mirror of
https://github.com/bkaradzic/bgfx.git
synced 2026-09-08 11:38:16 +00:00
24 lines
437 B
Plaintext
24 lines
437 B
Plaintext
/*
|
|
* 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_METAL
|
|
# include "../../bgfx-ext/src/renderer_mtl.mm"
|
|
#else
|
|
|
|
namespace bgfx { namespace mtl
|
|
{
|
|
RendererContextI* rendererCreate()
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
void rendererDestroy()
|
|
{
|
|
}
|
|
} /* namespace mtl */ } // namespace bgfx
|
|
|
|
#endif // BGFX_CONFIG_RENDERER_METAL
|