egl: delete DRI_IMAGE remnants

Reviewed-by: Adam Jackson <ajax@redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/30472>
This commit is contained in:
Mike Blumenkrantz
2024-07-29 13:51:32 -04:00
committed by Marge Bot
parent 18361e1a6e
commit f09e81636c
2 changed files with 0 additions and 3 deletions
-2
View File
@@ -598,7 +598,6 @@ static const struct dri_extension_match dri2_driver_extensions[] = {
static const struct dri_extension_match dri2_core_extensions[] = {
{__DRI2_FLUSH, 1, offsetof(struct dri2_egl_display, flush), false},
{__DRI_TEX_BUFFER, 2, offsetof(struct dri2_egl_display, tex_buffer), false},
{__DRI_IMAGE, 6, offsetof(struct dri2_egl_display, image), false},
};
static const struct dri_extension_match swrast_driver_extensions[] = {
@@ -608,7 +607,6 @@ static const struct dri_extension_match swrast_driver_extensions[] = {
static const struct dri_extension_match swrast_core_extensions[] = {
{__DRI_TEX_BUFFER, 2, offsetof(struct dri2_egl_display, tex_buffer), false},
{__DRI_IMAGE, 6, offsetof(struct dri2_egl_display, image), true},
};
static const struct dri_extension_match optional_core_extensions[] = {
-1
View File
@@ -246,7 +246,6 @@ struct dri2_egl_display {
const __DRI2flushExtension *flush;
const __DRI2flushControlExtension *flush_control;
const __DRItexBufferExtension *tex_buffer;
const __DRIimageExtension *image;
const __DRI2configQueryExtension *config;
const __DRI2fenceExtension *fence;
const __DRI2bufferDamageExtension *buffer_damage;