Ray Redondo

Results 85 comments of Ray Redondo

I'm able to go into and out of the Nether on the current build. The End is still a bit glitchy; the server crashed when I went in the first...

Okay, I retract that; if I go to and from the Nether enough, chunks stop loading. I've disabled C2ME for now.

The referenced issue has been closed; is this needed anymore?

I should ask: do we know where the source of this problem is? i.e. what mixins are interfering with each other, or something like that. If someone could pin that...

> This is somewhat difficult to do in real life. For something like X11, it is expected that there is only one event loop handler driving events. So you can't...

Fair; that was a terminology mistake, as that was entirely what I meant.

Let me catch you up. Some plugin APIs, such as VST, pass the application a window handle in some platform-specific manner. If I want to use winit for a VST,...

The plugin will be passed a window handle, and it can attach an event loop to that. I would like to use winit specifically to manage the event loop and...

VST3 is cross-platform, but even VST2 was ported to Linux IIRC. LV2 has a very similar setup, as does clap, and all of these are just audio plugin specifications I...

Looking at the LV2 specification, the plugin will be given one of the following: * On macOS (Cocoa), `NSView*` * On Windows, `HWND` * On Linux (X11), `Window` Wayland is...