From: Emil Velikov Date: Mon, 15 May 2017 15:14:17 +0000 (+0100) Subject: egl: annotate dri2_egl_display_vtbl as const data X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=79d1fb95ee8ba8f1b55f531f0cd5e6ec4062d821;p=mesa.git egl: annotate dri2_egl_display_vtbl as const data With the final place that modifies the vtbl removed as of last commit we can annotate the symbols accordingly. Signed-off-by: Emil Velikov Reviewed-by: Eric Engestrom --- diff --git a/src/egl/drivers/dri2/platform_android.c b/src/egl/drivers/dri2/platform_android.c index 8384cab3904..a16a3809a31 100644 --- a/src/egl/drivers/dri2/platform_android.c +++ b/src/egl/drivers/dri2/platform_android.c @@ -1050,7 +1050,7 @@ droid_open_device(struct dri2_egl_display *dri2_dpy) return (fd >= 0) ? fcntl(fd, F_DUPFD_CLOEXEC, 3) : -1; } -static struct dri2_egl_display_vtbl droid_display_vtbl = { +static const struct dri2_egl_display_vtbl droid_display_vtbl = { .authenticate = NULL, .create_window_surface = droid_create_window_surface, .create_pixmap_surface = dri2_fallback_create_pixmap_surface, diff --git a/src/egl/drivers/dri2/platform_drm.c b/src/egl/drivers/dri2/platform_drm.c index 0e16d520bd8..50627a7492d 100644 --- a/src/egl/drivers/dri2/platform_drm.c +++ b/src/egl/drivers/dri2/platform_drm.c @@ -646,7 +646,7 @@ drm_add_configs_for_visuals(_EGLDriver *drv, _EGLDisplay *disp) return (count != 0); } -static struct dri2_egl_display_vtbl dri2_drm_display_vtbl = { +static const struct dri2_egl_display_vtbl dri2_drm_display_vtbl = { .authenticate = dri2_drm_authenticate, .create_window_surface = dri2_drm_create_window_surface, .create_pixmap_surface = dri2_drm_create_pixmap_surface, diff --git a/src/egl/drivers/dri2/platform_surfaceless.c b/src/egl/drivers/dri2/platform_surfaceless.c index df46099c242..6aea5876ae0 100644 --- a/src/egl/drivers/dri2/platform_surfaceless.c +++ b/src/egl/drivers/dri2/platform_surfaceless.c @@ -228,7 +228,7 @@ surfaceless_add_configs_for_visuals(_EGLDriver *drv, _EGLDisplay *dpy) return (count != 0); } -static struct dri2_egl_display_vtbl dri2_surfaceless_display_vtbl = { +static const struct dri2_egl_display_vtbl dri2_surfaceless_display_vtbl = { .create_pixmap_surface = dri2_fallback_create_pixmap_surface, .create_pbuffer_surface = dri2_surfaceless_create_pbuffer_surface, .destroy_surface = surfaceless_destroy_surface, diff --git a/src/egl/drivers/dri2/platform_wayland.c b/src/egl/drivers/dri2/platform_wayland.c index 0014dd4a793..56db1661c02 100644 --- a/src/egl/drivers/dri2/platform_wayland.c +++ b/src/egl/drivers/dri2/platform_wayland.c @@ -1066,7 +1066,7 @@ dri2_wl_setup_swap_interval(struct dri2_egl_display *dri2_dpy) } } -static struct dri2_egl_display_vtbl dri2_wl_display_vtbl = { +static const struct dri2_egl_display_vtbl dri2_wl_display_vtbl = { .authenticate = dri2_wl_authenticate, .create_window_surface = dri2_wl_create_window_surface, .create_pixmap_surface = dri2_wl_create_pixmap_surface, @@ -1754,7 +1754,7 @@ static const struct wl_registry_listener registry_listener_swrast = { .global_remove = registry_handle_global_remove }; -static struct dri2_egl_display_vtbl dri2_wl_swrast_display_vtbl = { +static const struct dri2_egl_display_vtbl dri2_wl_swrast_display_vtbl = { .authenticate = NULL, .create_window_surface = dri2_wl_create_window_surface, .create_pixmap_surface = dri2_wl_create_pixmap_surface, diff --git a/src/egl/drivers/dri2/platform_x11.c b/src/egl/drivers/dri2/platform_x11.c index d15c1ce9274..b7d7e303a71 100644 --- a/src/egl/drivers/dri2/platform_x11.c +++ b/src/egl/drivers/dri2/platform_x11.c @@ -1135,7 +1135,7 @@ dri2_x11_get_sync_values(_EGLDisplay *display, _EGLSurface *surface, return EGL_TRUE; } -static struct dri2_egl_display_vtbl dri2_x11_swrast_display_vtbl = { +static const struct dri2_egl_display_vtbl dri2_x11_swrast_display_vtbl = { .authenticate = NULL, .create_window_surface = dri2_x11_create_window_surface, .create_pixmap_surface = dri2_x11_create_pixmap_surface, @@ -1154,7 +1154,7 @@ static struct dri2_egl_display_vtbl dri2_x11_swrast_display_vtbl = { .get_dri_drawable = dri2_surface_get_dri_drawable, }; -static struct dri2_egl_display_vtbl dri2_x11_display_vtbl = { +static const struct dri2_egl_display_vtbl dri2_x11_display_vtbl = { .authenticate = dri2_x11_authenticate, .create_window_surface = dri2_x11_create_window_surface, .create_pixmap_surface = dri2_x11_create_pixmap_surface,