render/egl: recognize EGL_BAD_DEVICE_EXT error

This commit is contained in:
Ronan Pigott 2020-11-17 13:13:18 -07:00 committed by Simon Ser
parent e18599b05e
commit dc7c6c4860
1 changed files with 2 additions and 0 deletions

View File

@ -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: