Skip to content

Commit

Permalink
Add robustness getting the EGL version (see bug #4040)
Browse files Browse the repository at this point in the history
  • Loading branch information
1bsyl committed Oct 18, 2019
1 parent 3ecce84 commit 03f27a3
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions src/video/SDL_egl.c
Expand Up @@ -509,6 +509,18 @@ SDL_EGL_LoadLibrary(_THIS, const char *egl_path, NativeDisplayType native_displa
}
#endif

/* Get the EGL version */
if (_this->egl_data->eglQueryString && _this->egl_data->egl_version_major == 0 && _this->egl_data->egl_version_major == 0) {
const char *egl_version = _this->egl_data->eglQueryString(_this->egl_data->egl_display, EGL_VERSION);
int major = 0, minor = 0;
if (egl_version != NULL) {
if (SDL_sscanf(egl_version, "%d.%d", &major, &minor) == 2) {
_this->egl_data->egl_version_major = major;
_this->egl_data->egl_version_minor = minor;
}
}
}

_this->egl_data->is_offscreen = 0;

return 0;
Expand Down Expand Up @@ -594,6 +606,18 @@ SDL_EGL_InitializeOffscreen(_THIS, int device)
}
}

/* Get the EGL version */
if (_this->egl_data->eglQueryString && _this->egl_data->egl_version_major == 0 && _this->egl_data->egl_version_major == 0) {
const char *egl_version = _this->egl_data->eglQueryString(_this->egl_data->egl_display, EGL_VERSION);
int major = 0, minor = 0;
if (egl_version != NULL) {
if (SDL_sscanf(egl_version, "%d.%d", &major, &minor) == 2) {
_this->egl_data->egl_version_major = major;
_this->egl_data->egl_version_minor = minor;
}
}
}

_this->egl_data->is_offscreen = 1;

return 0;
Expand Down

0 comments on commit 03f27a3

Please sign in to comment.