Veritas Graphics is a artificial graphics rendering library based on NanoVG. All APIs are learned from Apple CoreGraphics & CoreAnimation.
The Veritas Graphics API is modeled loosely on QuartzCore API.
#include "VGContext.h"
...
struct NVGcontext* vg = nvgCreateGL2(NVG_ANTIALIAS | NVG_STENCIL_STROKES);
VGContextCreate(vg);
This will create a render context, you can access this context by extern VGContextRef VGGetCurrentContext(void)
.
- VGLabel
- VGButton
- VGSpinner
- VGSlider
- VGInput
- VGCheckBox
The library is licensed under zlib license