Ben Owen
Ben Owen
Worked around using ```c# string path = Environment.GetEnvironmentVariable("Path", EnvironmentVariableTarget.Process); string nativePath = Path.Combine( AppDomain.CurrentDomain.RelativeSearchPath, Environment.Is64BitProcess ? "x64" : "x86"); Environment.SetEnvironmentVariable("Path", nativePath + ";" + path, EnvironmentVariableTarget.Process); ``` Note that this...
Thanks for the response. Are you able to provide any detail as to why this isn't supported? * Outwith scope / ethos of winit * Technically challenging / impossible *...
Looking at the implementation a bit more, the `init` method * Creates a window using `winuser::CreateWindowExW` * Wraps the resulting `HWND` using `WindowWrapper(handle)` * Creates an actual `Window` struct using...
> What exactly would be the use case? In a word - interop. My interest just now is mostly in using a Rust library to draw 3D graphics in a...
That sounds like another use case. For me it's less about being able to parent a winit-owned window to a foreign window (or vice versa), but rather about being able...
Naively addressed by changing those two snippets to: ```javascript var atRoot = loc.pathname.replace(/[^\/]$/, '$&/').toUpperCase() === this.root.toUpperCase(); ``` and ```javascript if (!fragment.toUpperCase().indexOf(root.toUpperCase())) { ``` This will *not* cope with various unicode...
I take it back - this appears to be something inside howler.js itself!