2016-08-29 22:31:11 +02:00
|
|
|
/*
|
2017-04-11 08:16:10 +02:00
|
|
|
* Copyright 2011-2017 Branimir Karadzic. All rights reserved.
|
2016-08-29 22:31:11 +02:00
|
|
|
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef NANOVG_BGFX_H_HEADER_GUARD
|
|
|
|
#define NANOVG_BGFX_H_HEADER_GUARD
|
|
|
|
|
|
|
|
#include "bgfx/bgfx.h"
|
|
|
|
|
|
|
|
namespace bx { struct AllocatorI; }
|
|
|
|
|
|
|
|
struct NVGcontext;
|
|
|
|
|
|
|
|
struct NVGLUframebuffer {
|
|
|
|
NVGcontext* ctx;
|
|
|
|
bgfx::FrameBufferHandle handle;
|
|
|
|
int image;
|
|
|
|
uint8_t viewId;
|
|
|
|
};
|
|
|
|
typedef struct NVGLUframebuffer NVGLUframebuffer;
|
|
|
|
|
|
|
|
NVGcontext* nvgCreate(int edgeaa, unsigned char _viewId, bx::AllocatorI* _allocator);
|
|
|
|
NVGcontext* nvgCreate(int edgeaa, unsigned char _viewId);
|
|
|
|
void nvgDelete(struct NVGcontext* ctx);
|
|
|
|
uint8_t nvgViewId(struct NVGcontext* ctx);
|
|
|
|
void nvgViewId(struct NVGcontext* ctx, unsigned char _viewId);
|
|
|
|
|
|
|
|
// Helper functions to create bgfx framebuffer to render to.
|
|
|
|
// Example:
|
|
|
|
// float scale = 2;
|
|
|
|
// NVGLUframebuffer* fb = nvgluCreateFramebuffer(ctx, 100 * scale, 100 * scale, 0);
|
2017-04-11 08:16:10 +02:00
|
|
|
// nvgluSetViewFramebuffer(VIEW_ID, fb);
|
2016-08-29 22:31:11 +02:00
|
|
|
// nvgluBindFramebuffer(fb);
|
|
|
|
// nvgBeginFrame(ctx, 100, 100, scale);
|
|
|
|
// // renders anything offscreen
|
|
|
|
// nvgEndFrame(ctx);
|
|
|
|
// nvgluBindFramebuffer(NULL);
|
|
|
|
//
|
|
|
|
// // Pastes the framebuffer rendering.
|
|
|
|
// nvgBeginFrame(ctx, 1024, 768, scale);
|
|
|
|
// NVGpaint paint = nvgImagePattern(ctx, 0, 0, 100, 100, 0, fb->image, 1);
|
|
|
|
// nvgBeginPath(ctx);
|
|
|
|
// nvgRect(ctx, 0, 0, 100, 100);
|
|
|
|
// nvgFillPaint(ctx, paint);
|
|
|
|
// nvgFill(ctx);
|
|
|
|
// nvgEndFrame(ctx);
|
2017-04-11 08:16:10 +02:00
|
|
|
NVGLUframebuffer* nvgluCreateFramebuffer(NVGcontext* ctx, int width, int height, int imageFlags, uint8_t viewId);
|
2016-08-29 22:31:11 +02:00
|
|
|
NVGLUframebuffer* nvgluCreateFramebuffer(NVGcontext* ctx, int width, int height, int imageFlags);
|
|
|
|
void nvgluBindFramebuffer(NVGLUframebuffer* framebuffer);
|
|
|
|
void nvgluDeleteFramebuffer(NVGLUframebuffer* framebuffer);
|
2017-04-11 08:16:10 +02:00
|
|
|
void nvgluSetViewFramebuffer(uint8_t viewId, NVGLUframebuffer* framebuffer);
|
2016-08-29 22:31:11 +02:00
|
|
|
|
|
|
|
#endif // NANOVG_BGFX_H_HEADER_GUARD
|