diff options
author | Maarten Lankhorst <[email protected]> | 2013-11-25 13:10:55 +0100 |
---|---|---|
committer | Maarten Lankhorst <[email protected]> | 2013-11-25 13:13:47 +0100 |
commit | 5455c818b558cdc618441988434eb2755cd98b67 (patch) | |
tree | 91cfaed27fba9192f44c03ba3bbac8d1604e203d /src/gbm | |
parent | e6a0eca45e5f760656542035b25238a9d5dfdbd0 (diff) |
gbm/dri: hide extension loader symbols
They should not be exposed.
Cc: "10.0" <[email protected]>
Diffstat (limited to 'src/gbm')
-rw-r--r-- | src/gbm/backends/dri/gbm_dri.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gbm/backends/dri/gbm_dri.c b/src/gbm/backends/dri/gbm_dri.c index 6c63c75e92d..b4b97ac6a97 100644 --- a/src/gbm/backends/dri/gbm_dri.c +++ b/src/gbm/backends/dri/gbm_dri.c @@ -131,14 +131,14 @@ static const __DRIimageLookupExtension image_lookup_extension = { dri_lookup_egl_image }; -const __DRIdri2LoaderExtension dri2_loader_extension = { +static const __DRIdri2LoaderExtension dri2_loader_extension = { { __DRI_DRI2_LOADER, 3 }, dri_get_buffers, dri_flush_front_buffer, dri_get_buffers_with_format, }; -const __DRIimageLoaderExtension image_loader_extension = { +static const __DRIimageLoaderExtension image_loader_extension = { { __DRI_IMAGE_LOADER, 1 }, image_get_buffers, dri_flush_front_buffer, |