mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 17:18:12 -05:00
16 lines
341 B
C++
16 lines
341 B
C++
/*
|
|
* Copyright 2011-2015 Branimir Karadzic. All rights reserved.
|
|
* License: http://www.opensource.org/licenses/BSD-2-Clause
|
|
*/
|
|
|
|
#ifndef BGFX_RENDERDOC_H_HEADER_GUARD
|
|
#define BGFX_RENDERDOC_H_HEADER_GUARD
|
|
|
|
namespace bgfx
|
|
{
|
|
void* loadRenderDoc();
|
|
void unloadRenderDoc(void*);
|
|
|
|
} // namespace bgfx
|
|
|
|
#endif // BGFX_RENDERDOC_H_HEADER_GUARD
|