egl: delete DRI_BUFFER_DAMAGE remnants

Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/30494>
This commit is contained in:
Mike Blumenkrantz 2024-07-30 10:49:19 -04:00 committed by Marge Bot
parent 591bc52e3e
commit 0ae2958452
2 changed files with 0 additions and 3 deletions

View file

@ -596,8 +596,6 @@ static const struct dri_extension_match swrast_core_extensions[] = {
static const struct dri_extension_match optional_core_extensions[] = {
{__DRI2_CONFIG_QUERY, 1, offsetof(struct dri2_egl_display, config), true},
{__DRI2_FENCE, 2, offsetof(struct dri2_egl_display, fence), true},
{__DRI2_BUFFER_DAMAGE, 1, offsetof(struct dri2_egl_display, buffer_damage),
true},
{__DRI2_INTEROP, 1, offsetof(struct dri2_egl_display, interop), true},
{__DRI2_FLUSH_CONTROL, 1, offsetof(struct dri2_egl_display, flush_control),
true},

View file

@ -246,7 +246,6 @@ struct dri2_egl_display {
const __DRItexBufferExtension *tex_buffer;
const __DRI2configQueryExtension *config;
const __DRI2fenceExtension *fence;
const __DRI2bufferDamageExtension *buffer_damage;
const __DRI2blobExtension *blob;
const __DRI2interopExtension *interop;
const __DRImutableRenderBufferDriverExtension *mutable_render_buffer;