gbm: delete DRI_MESA 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-26 11:01:37 -04:00 committed by Marge Bot
parent 0f8a85487b
commit 0d9f69de2c
2 changed files with 0 additions and 3 deletions

View file

@ -237,12 +237,10 @@ static struct dri_extension_match dri_core_extensions[] = {
};
static struct dri_extension_match gbm_dri_device_extensions[] = {
{ __DRI_MESA, 2, offsetof(struct gbm_dri_device, mesa), false },
{ __DRI_IMAGE_DRIVER, 2, offsetof(struct gbm_dri_device, image_driver), false },
};
static struct dri_extension_match gbm_swrast_device_extensions[] = {
{ __DRI_MESA, 2, offsetof(struct gbm_dri_device, mesa), false },
{ __DRI_SWRAST, 5, offsetof(struct gbm_dri_device, swrast), false },
{ __DRI_KOPPER, 1, offsetof(struct gbm_dri_device, kopper), true },
};

View file

@ -56,7 +56,6 @@ struct gbm_dri_device {
__DRIcontext *context;
mtx_t mutex;
const __DRImesaCoreExtension *mesa;
const __DRIimageExtension *image;
const __DRIimageDriverExtension *image_driver;
const __DRIswrastExtension *swrast;