diff options
Diffstat (limited to '3rdparty/bgfx/examples/common/nanovg/nanovg_bgfx.h')
-rw-r--r-- | 3rdparty/bgfx/examples/common/nanovg/nanovg_bgfx.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3rdparty/bgfx/examples/common/nanovg/nanovg_bgfx.h b/3rdparty/bgfx/examples/common/nanovg/nanovg_bgfx.h new file mode 100644 index 00000000000..d24ee4fa72f --- /dev/null +++ b/3rdparty/bgfx/examples/common/nanovg/nanovg_bgfx.h @@ -0,0 +1,18 @@ +/* + * Copyright 2011-2016 Branimir Karadzic. All rights reserved. + * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause + */ + +#ifndef NANOVG_BGFX_H_HEADER_GUARD +#define NANOVG_BGFX_H_HEADER_GUARD + +namespace bx { struct AllocatorI; } + +struct NVGcontext; + +NVGcontext* nvgCreate(int edgeaa, unsigned char _viewId, bx::AllocatorI* _allocator); +NVGcontext* nvgCreate(int edgeaa, unsigned char _viewId); +void nvgViewId(struct NVGcontext* ctx, unsigned char _viewId); +void nvgDelete(struct NVGcontext* ctx); + +#endif // NANOVG_BGFX_H_HEADER_GUARD |