render/egl: drop EGL_PLATFORM_GBM_KHR

Now that we match other devices for DRM platform devices, we no
longer need this to support split render/display systems.
This commit is contained in:
Simon Ser 2023-10-05 15:49:50 +02:00
parent a69a6ae391
commit c0ffee9715
3 changed files with 13 additions and 74 deletions

View file

@ -7,7 +7,6 @@ struct wlr_egl {
EGLDisplay display;
EGLContext context;
EGLDeviceEXT device; // may be EGL_NO_DEVICE_EXT
struct gbm_device *gbm_device;
struct {
// Display extensions
@ -23,7 +22,6 @@ struct wlr_egl {
// Client extensions
bool EXT_device_query;
bool KHR_platform_gbm;
bool EXT_platform_device;
bool KHR_display_reference;
} exts;