Mesa (master): gallium: annotate sw_driver_descriptor instance as const data

Emil Velikov evelikov at kemper.freedesktop.org
Fri Oct 14 10:09:40 UTC 2016


Module: Mesa
Branch: master
Commit: 48267b730cdf3e4ce78449cee10413cb5e73fb50
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=48267b730cdf3e4ce78449cee10413cb5e73fb50

Author: Emil Velikov <emil.velikov at collabora.com>
Date:   Tue Oct 11 19:39:27 2016 +0100

gallium: annotate sw_driver_descriptor instance as const data

Already treated and handled as such.

Signed-off-by: Emil Velikov <emil.velikov at collabora.com>
Reviewed-by: Marek Olšák <marek.olsak at amd.com>

---

 src/gallium/include/state_tracker/sw_driver.h | 2 +-
 src/gallium/targets/pipe-loader/pipe_swrast.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/gallium/include/state_tracker/sw_driver.h b/src/gallium/include/state_tracker/sw_driver.h
index 0eb2b44..1d59bd5 100644
--- a/src/gallium/include/state_tracker/sw_driver.h
+++ b/src/gallium/include/state_tracker/sw_driver.h
@@ -16,6 +16,6 @@ struct sw_driver_descriptor
    } winsys[];
 };
 
-extern struct sw_driver_descriptor swrast_driver_descriptor;
+extern const struct sw_driver_descriptor swrast_driver_descriptor;
 
 #endif
diff --git a/src/gallium/targets/pipe-loader/pipe_swrast.c b/src/gallium/targets/pipe-loader/pipe_swrast.c
index cf617f3..0a980b3 100644
--- a/src/gallium/targets/pipe-loader/pipe_swrast.c
+++ b/src/gallium/targets/pipe-loader/pipe_swrast.c
@@ -23,7 +23,7 @@ swrast_create_screen(struct sw_winsys *ws)
 }
 
 PUBLIC
-struct sw_driver_descriptor swrast_driver_descriptor = {
+const struct sw_driver_descriptor swrast_driver_descriptor = {
    .create_screen = swrast_create_screen,
    .winsys = {
 #ifdef HAVE_PIPE_LOADER_DRI




More information about the mesa-commit mailing list