Added AGC renderer stub.

This commit is contained in:
Бранимир Караџић
2021-08-24 19:35:09 -07:00
parent ec7cb7608e
commit ee0fbea726
17 changed files with 81 additions and 22 deletions

20
src/renderer_agc.cpp Normal file
View File

@@ -0,0 +1,20 @@
/*
* Copyright 2011-2021 Branimir Karadzic. All rights reserved.
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
*/
#include "bgfx_p.h"
namespace bgfx { namespace agc
{
RendererContextI* rendererCreate(const Init& _init)
{
BX_UNUSED(_init);
return NULL;
}
void rendererDestroy()
{
}
} /* namespace agc */ } // namespace bgfx