diff --git a/src/gbm/backends/dri/gbm_dri.c b/src/gbm/backends/dri/gbm_dri.c index 08caca9b3d1..3e5c214cfa0 100644 --- a/src/gbm/backends/dri/gbm_dri.c +++ b/src/gbm/backends/dri/gbm_dri.c @@ -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 }, }; diff --git a/src/gbm/backends/dri/gbm_driint.h b/src/gbm/backends/dri/gbm_driint.h index 646f6f61173..a24aaa85e3f 100644 --- a/src/gbm/backends/dri/gbm_driint.h +++ b/src/gbm/backends/dri/gbm_driint.h @@ -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;