LiterallyVoid
LiterallyVoid
`gb_remainder` uses `round`. this is bad, because it means `gb_remainder(1.5, 2.0)` = `-0.5`, and `gb_mod(2.5, 2.0)` = `2.5`. this is contrary to how the C standard library `modf` / `remainder`...
`gl.GetStringi()` returns u8, while it should return `cstring` (same as `gl.GetString()`) Relevant lines: [impl.odin line 576](https://github.com/vassvik/odin-gl/blob/1eec8a65c8fd7fb63e020e3d0b949432e9e2030d/impl.odin#L576) [wrappers.odin line 282](https://github.com/vassvik/odin-gl/blob/1eec8a65c8fd7fb63e020e3d0b949432e9e2030d/wrappers.odin#L282) [OpenGL spec](https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetString.xhtml)
This adds an option to disable typo-mode inside specified XML tags, for example `` and `` if you're going to be writing HTML. Concerns: * Should this be enabled by...
All code is from #490, I've just fixed a few merge conflicts.