Constantin

Results 8 issues of Constantin

Hi, I was eager to benchmark your table-based utf8 parsing approach against the standard library implementation, so I did: https://github.com/ConnyOnny/utf8perf If my testing setup is not wrong (see [main.rs](https://github.com/ConnyOnny/utf8perf/blob/master/src/main.rs)) it...

bug

You already mentioned that you need different escaping for different languages to template. However with the web it's way worse, because you have different languages in one file. Escaping is...

Apparently somehow an old version of "node-gyp" is used for the build, which depends on Python 2 to be present. Excerpt from the build log: ``` text gyp info using...

For each pixel if we provide the vector pointing to the nearest point of the shape instead of just the distance, shader effects can use that directional information to create...

After an initial SDF calculation for some pixel yielding distance "D", we know that the result for the neighboring pixel will be off by at most 1. So when iterating...

Is dispman code really faster than OpenGL ES code doing the same stuff on the Raspberry Pi? If yes, by how much? In other words: Is it worth it?

For `piston_window::Texture::update` you need a `gfx::Encoder`. The [documentation](http://docs.piston.rs/piston_window/gfx/struct.Encoder.html) says > The Encoder implements From, which is how it is constructed. There is no cross-API way to create a CommandBuffer, however,...

The Readme says > Rust's builtin format! can achieve the same functionality: https://doc.rust-lang.org/std/fmt/index.html#fillalignment Can it though? I get this far: ```rust format!("{:>width$}", string, width=codepoints) ``` But this does not work:...