Files
bgfx/src/renderer_agc.cpp
Бранимир Караџић ee0fbea726 Added AGC renderer stub.
2021-08-24 19:35:09 -07:00

21 lines
360 B
C++

/*
* 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