Hello. I wrote a Windows console executable that makes some calls to an ANGLE library to create and render a rectangle off-screen, which I then write to a png file. I then took that executable along with a few dependency dlls (including libEGL.dll and libGLESv2.dll) and put them in a c# Azure Function folder. I call the exe from the Azure Function using System.Diagnostics.Process. The whole setup works fine when I run it locally, but when I publish remotely to the Azure environment, it fails. It took a while to get the remote version to even find the dependency dlls, but once I did, I'm getting a fail inside of eglInitialize(). The error code is 12289, which is EGL_NOT_INITIALIZED. I've tried many configurations with eglGetPlatformDisplayEXT() including forcing ANGLE to use software rendering, but have had no luck. My question is, is it even possible to get an Azure Function to, via a console executable, run ANGLE code? Or are there limitations in the Azure Functions environment that will never allow this to happen?