diff options
author | Emil Velikov <[email protected]> | 2017-05-11 16:46:51 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2017-05-29 16:50:12 +0100 |
commit | 46cc022d5d392802e60415cc2d0da3969c8d6981 (patch) | |
tree | 4172c7940815f518002c9fec493bc340f6b23fa7 /src/gbm/backends/dri/gbm_driint.h | |
parent | 90d0ad14ca900aeedf1ae9bbff32266067a33b6e (diff) |
gbm: manage only the required set of DRI extensions
Currently GBM attempts to know all the extensions that might be required
by EGL/DRM [at some later stage].
That is a bit unclear and we often forget to update GBM as EGL gets
attention.
To avoid that, simply let EGL manage it's own required extensions based
on the base primitive (screen) we provide it.
v2: Rework the approach - GBM should not dive into EGL/DRM.
Signed-off-by: Emil Velikov <[email protected]>
Tested-by: Rob Herring <[email protected]>
Diffstat (limited to 'src/gbm/backends/dri/gbm_driint.h')
-rw-r--r-- | src/gbm/backends/dri/gbm_driint.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/gbm/backends/dri/gbm_driint.h b/src/gbm/backends/dri/gbm_driint.h index 68220cb85d0..db9038a623a 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 { const __DRIimageExtension *image; const __DRIswrastExtension *swrast; const __DRI2flushExtension *flush; - const __DRI2interopExtension *interop; const __DRIconfig **driver_configs; const __DRIextension **loader_extensions; |