rust-windowing/glutin

Also support `EGL_EXT_swap_buffers_with_damage`

i509VCB opened this issue · 2 comments

Even though there is the EGL_KHR_swap_buffers_with_damage extension which glutin does support. It would probably be worth also supporting EGL_EXT_swap_buffers_with_damage for older drivers.

If both extensions are available, then glutin should prefer the KHR extension, EGL_KHR_swap_buffers_with_damage.

This is not about the drivers, but more about the platform inside mesa, since it's an extension akin to buffer age one.

It doesn't stop us from doing a fallback though.

We actually already do that.