r-lyeh

Results 44 comments of r-lyeh

Hmmm I see. I was thinking about if I could exploit the preprocessor to transform a `MACRO(2+1,a,b,c)` into `MACRO3(a,b,c)` :)

also, https://github.com/rossy/borderless-window

https://github.com/ands/borderless-window-opengl

A cherry theme :D ![image](https://user-images.githubusercontent.com/35402248/47086690-7f359200-d21a-11e8-99f2-ed2764d7a772.png) ```c++ void CherryTheme() { // cherry colors, 3 intensities #define HI(v) ImVec4(0.502f, 0.075f, 0.256f, v) #define MED(v) ImVec4(0.455f, 0.198f, 0.301f, v) #define LOW(v) ImVec4(0.232f, 0.201f,...

I dont see any problems :D care to highlight the misalignment? thx :D Edit: Ok, thx! I've fixed the original snippet.

Cool thx. I think this topic is a interesting addition! I also have small msgpack and json/json5 parsers/writers lying around! :D

I've extracted tinyjson5 from AVA engine. It is a JSON5/SJSON/JSON parser and JSON writer, which happens to be small and fast enough (parses 55 MiB JSON file at 230 ms...

tinyini only load files and provide a list of pairs {key:value}. The point is that it parses a superset of ini which includes a few more options to work with.

in the tinyini demo, rather than printf'ing pairs, you could add them to a `map` for further lookups and that would be enough for an end-user, I guess.