egl: Reject attempts to set negative swap intervals

This commit is contained in:
Ethan Lee 2021-04-27 02:25:57 -04:00 committed by Ryan C. Gordon
parent c54c16d353
commit 9161f95166

View File

@ -1088,6 +1088,13 @@ SDL_EGL_SetSwapInterval(_THIS, int interval)
return SDL_SetError("EGL not initialized");
}
/* FIXME: Revisit this check when EGL_EXT_swap_control_tear is published:
* https://github.com/KhronosGroup/EGL-Registry/pull/113
*/
if (interval < 0) {
return SDL_SetError("Late swap tearing currently unsupported");
}
status = _this->egl_data->eglSwapInterval(_this->egl_data->egl_display, interval);
if (status == EGL_TRUE) {
_this->egl_data->egl_swapinterval = interval;