e2-71828

Results 6 comments of e2-71828

Build failure appears unrelated to these changes

> People say that it's a common variable name, but I think that it's only common as a pluralisation of `i`, where `i_s` could easily serve that purpose. I won’t...

Related: https://github.com/hfg-gmuend/openmoji/issues/417

This is a possible model for fixing the soundness issues in #333. I started with `get_quad_context` because it will prevent graphics calls from accidentally happening on the wrong thread, even...

After asking about this on [URLO](https://users.rust-lang.org/t/unsafe-code-review-mutable-scoped-thread-locals/94885), it seems the current version isn't quite sound. There's a couple of options to fix it: 1. Replace some of the panics with aborts,...

`get_context()` returning `&'static mut` looks to still be a soundness problem in the new branch. I suspect that a similar solution could work for that— In the new version, do...