oddfacade

Results 6 comments of oddfacade

i'm getting the same issue on a rtx 2070. arch linux. wgpu examples seem to run fine.

The fundamental problem is that neither `FromWorld` nor `Default` have access to the handle id. So implementing `FromWorld` doesn't fix the problem because even if you get a strong handle...

I'm willing to submit a fix for this if it's just an oversight. Mostly making this report to confirm that the behavior isn't intentional.

The motivation in my case is I have a documentation package containing pre-rendered html docs. It is separate from my main package, but has the main package as a build...

I have a custom GUI class that works roughly like this: ``` class MyGUI : public GUI { void addNumEntry(const char* label, FAUSTFLOAT* zone, FAUSTFLOAT init, FAUSTFLOAT min, FAUSTFLOAT max,...

Yes, I did something very similar to your suggestion to work around the issue. I appreciate you trying to help me get unstuck, but to be clear, I'm not really...