mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-22 21:05:58 +01:00
render/egl: recognize EGL_BAD_DEVICE_EXT error
This commit is contained in:
parent
e18599b05e
commit
dc7c6c4860
1 changed files with 2 additions and 0 deletions
|
@ -75,6 +75,8 @@ static const char *egl_error_str(EGLint error) {
|
|||
return "EGL_BAD_CURRENT_SURFACE";
|
||||
case EGL_BAD_DISPLAY:
|
||||
return "EGL_BAD_DISPLAY";
|
||||
case EGL_BAD_DEVICE_EXT:
|
||||
return "EGL_BAD_DEVICE_EXT";
|
||||
case EGL_BAD_SURFACE:
|
||||
return "EGL_BAD_SURFACE";
|
||||
case EGL_BAD_MATCH:
|
||||
|
|
Loading…
Reference in a new issue