http://bugs.winehq.org/show_bug.cgi?id=59372 --- Comment #13 from uvos <devnull@uvos.xyz> --- Since wine hangs on initialization i can not run "wine reg add "HKCU\\Software\\Wine\\X11 Driver" /v UseEGL /d N /f" Wine hangs before the prefix is ever finishes initializing so there is no registry to change anyhow (unless i create one with wine 11.0) Eglinfo dosent show the mi100 devices at all - this is because it attempts to create a graphics context too and just skips the whole device when this fails. The main problem here is that wine seams to attempt to init all devices and hangs when context creation fails, if you make other egl clients try and use the mi100 for graphics (with DRI_PRIME and the like) the application in question (like eglgears) will simply exit with error: ``` $ DRI_PRIME=1 eglgears_wayland EGL_VERSION = 1.5 radeonsi: error: can't create a graphics context on a compute chip EGLUT: failed to create context ``` The main problem here is not that wine fails to identify the mi100 as a device to avoid, but that it hangs when context creation fails, which could happen for many other reasons than that the device happens to not support the requested configuration as is the case here. -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.