mirror of
https://github.com/bkaradzic/bgfx.git
synced 2026-02-21 14:23:02 +01:00
Added AGC renderer stub.
This commit is contained in:
20
src/renderer_agc.cpp
Normal file
20
src/renderer_agc.cpp
Normal 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
|
||||
Reference in New Issue
Block a user