Ian Douglas Scott

Results 545 comments of Ian Douglas Scott

I've considered this. However, there is a problem: the binary data files are architecture specific (or so I've read; I'm not sure if I've tested it myself). I opened mk270/whitakers-words#68...

Calling words as a library would also be a good improvement, but is not easy. I think you would need to either hack Ada's IO to write to some string...

I've been working on this app recently, and got it to build with [a proper toolchain targeting Android](https://github.com/ids1024/whitakers-words-android/tree/master/words). Earlier, it was using an arm binary statically linked against glibc. I...

Ugh: https://stackoverflow.com/questions/30498776/position-independent-executables-and-android-lollipop PIE executables don't run on Android 4.0 and earlier. Non-PIE executables don't run in android 5.0 or later. A statically linked binary will work in either. So I...

I think the problem is probably the computer's encoding being set to ascii.

I mean locale: https://wiki.archlinux.org/index.php/Locale If I am right, running the `locale` command should output values with `ISO-8859-1` (i.e. ascii) in them. If the values include `UTF-8`, I am probably wrong.

Probably most users of gl/gl-generator are using glutin. It could make sense to maintain under the `rust-windowing` alongside glutin, although it isn't specifically windowing related. Gfx-rs is also a relevant...

Would `phosphorus` work for EGL/WGL/GLX like `gl_generator`? I guess if they're all just C functions and the same xml format? If it can handle all of these, perhaps `glutin` could...

Yeah, probably not too hard to add. There's also https://github.com/Dav1dde/glad, which added Rust support. And seems to be a pretty popular GL generator for C at the moment. It's written...

Ah, so it's when GLVND isn't present that this test is expected to be needed? It's awkward, but other than the Valgrind message probably will work fine. Though I guess...