Christian Vallentin
Christian Vallentin
If the feature request is only about closures, then this is a duplicate of #284. As djc already mentioned in that issue, the problem is that adding closure support essentially...
Of course, that's why I said if it was _only_ about closures. I was just trying to shine some light on alternatives, in case you didn't know. All new ideas...
Manually calling `configure_terminal()` after having executed a command, fixes the CMD and PowerShell issue. ```rust Command::new("git").arg("diff").status().unwrap(); clicolors_control::configure_terminal(); ```
Maybe just a note in the docs mentioning child processes and how it can affect the state of the console. Thus needing to call `configure_terminal()` after having executed a process.
I somehow missed this issue, until the latest notification. Sorry about that. > this is basically the code I am using In this case, are you saying "basically", because it's...
Currently, not yet. The font is baked into the library, and there is only that variant. Until #10 has been solved, then this isn't really possible to do manually either,...
What's the context? When you say "non-shader pipeline scene" are you implying the fixed-function pipeline? If yes, then I'd really prefer this to be configurable, e.g. with a macro. As...
> using a macro is probably a much better idea as like you mentioned we assume the use of a version > 3.0 Feel free to rework the PR and...
Assuming the user would handle loading image data. Then it would definitely be possible to implement custom fonts in the form of bitmap fonts. The default (only) font, is actually...
The baked in font data, is packed into [`_gltFontGlyphRects`] which stores the rectangle information of each glyph, and [`_gltFontGlyphData`] which stores the pixels of each font in relation to the...