Hey there,
just tried JUCE 7 with an existing project for the first time and ran into an assertion when a standalone plugin or audio unit (at least in logic) goes to background.
// juce_mac_CGMetalLayerRenderer.h
auto gpuTexture = resources->getGpuTexture();
if (gpuTexture == nullptr)
{
jassertfalse; // line 93
return false;
}
This results in the UI not beeing rendered anymore. Has anyone experienced the same issue? Important note: I can’t reproduce it with a fresh plugin.
Mac M1 Pro
Standalone Build and AU in Logic
Thanks
David