Skip to content

A few misc fixes

After the HACK patch to get things building, the next 2 patches fix up WARP support a bit, and then the last patch is the proper fix for the weak symbol shenanigans on Windows. I'll go ahead and send that upstream.

Before, if the table previously had NULL, we'd unconditionally fill it in, either with a real function, or a pointer to NULL. Now, we only actually fill in a non-null pointer if it's a real function. This also means that apps can do null checks on functions that aren't implemented by either common code or the driver. Without this, we'll always return something.

Merge request reports