Nat!

Results 45 issues of Nat!

I am currently doing my first git imerge on a clang repository and imerge is happily autofilling away since a couple of hours. It would be nice if there was...

idea

This is on an upgraded Ubuntu 17.10 (Gnome), where I just installed Sparkleshare like so: ``` $ sudo apt install flatpak $ flatpak remote-add flathub https://flathub.org/repo/flathub.flatpakrepo $ flatpak install flathub...

bug
Ubuntu

Here is a small program that shows the problem: ```c //#define JSMN_STRICT #include "jsmn.h" #include #include #define INCREMENTAL static char *json = "[\n" " 1848,\n" " {\n" " \"key\": true\n"...

Fix numbers and other primitives not being incrementally parsed correctly in non-strict mode. This does not fix incremental parses of root primitives (outside of a container). But it's better than...

If you define `JSMN_STRICT`, then parsing a simple number doesn't work anymore (it does if you undefine `JSMN_STRICT`): ``` #define JSMN_STRICT #include "jsmn.h" #include #include static char *json = "1";...

If I parse a JSON `[ thanx ]` with `JSMN_STRICT` defined, it doesn't really complain. Though `thanx` is not a keyword and needs to be quoted: ``` #define JSMN_STRICT #include...

I would like to separate my theme from the blog repository with the posts. With remote-theme I can do this, when I am hosting on github. But for a local...

This can avoid unneccessary rasterization. (see #643) In one demo, where I am using glyph measurements quite a lot, I could get 360fps instead of 330fps with this change. I...

The layout and drawing code of nanovg uses `fonsTextIterInit` and `fonsTextIterNext` to step through the glyphs. `fonsTextIterInit` needs to adjust the coordinates for the given origin and alignment (like `NVG_ALIGN_CENTER`)....

nanovg uses the `FONS_GLYPH_BITMAP_OPTIONAL` flag in various places to avoid the creation of superflous font atlas entries for glyphs. The actual glyph information is queried by [`fons__tt_buildGlyphBitmap` ](https://github.com/memononen/nanovg/blob/397f3300bc14bdb856ec429c71c345ab0340b0a6/src/fontstash.h#L347), which always...