nanovg
nanovg copied to clipboard
Antialiased 2D vector drawing library on top of OpenGL for UI and visualizations.
How to draw bilinear gradient? 
Hello, nice project Do you know vulkan backend for nanovg? THanks
Why does `nvgLinearGradient` need the NVGcontext to create a NVGpaint and `nvgRGB(A)(f)` doesn't? In the code, the context isn't used in the creation of the structures. Can't we remove the...
This is not necessarily a bug report, but rather to see if some further help could be provided. In https://github.com/zynaddsubfx/zyn-fusion-issues/issues/151, I reported about a text display issue with Zyn-Fusion. Suggestion...
This seems to do the trick. I don't really know what I am doing though. :D
hi, great project I have a few questions: 1. with what API does the opengl context is acquired internally ? 2. what is the best practice to integrate this into...
[nanovg_gl.h#L1444-#L1525](https://github.com/memononen/nanovg/blob/master/src/nanovg_gl.h#L1444-#L1525) EX. [#L1447](https://github.com/memononen/nanovg/blob/master/src/nanovg_gl.h#L1447) ``` cpp static NVGcontext* nvgCreateGL3(int flags); ``` [#L1492](https://github.com/memononen/nanovg/blob/master/src/nanovg_gl.h#L1492) ``` cpp static void nvgDeleteGL3(NVGcontext* ctx); ``` [#L1502](https://github.com/memononen/nanovg/blob/master/src/nanovg_gl.h#L1502) ``` cpp static int nvglCreateImageFromHandle(NVGcontext* ctx, GLuint textureId, int w, int...
which also use stb_image. My current workaround is to use: ``` c #define STB_IMAGE_STATIC #define STB_IMAGE_IMPLEMENTATION #include "stb_image.h" ``` in each of the conflicting libraries (currently SOIL and nanovg) to...
The Roboto fonts are licensed under the [Apache-2.0 license](http://www.apache.org/licenses/LICENSE-2.0). Quoting the license: ``` 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any...
I downloaded premake 5.0, opened cmd cd C:\Users\Name\Desktop\nanovg-master C:\Users\Name\Desktop\premake5.exe --os=windows vs2017 and result is Error: cannot open C:/Users/Name/Desktop/nanovg-master/premake4.lua: No such file or directory how to fix it?