summaryrefslogtreecommitdiffstats
path: root/src/gallium/include
diff options
context:
space:
mode:
authorEmil Velikov <[email protected]>2016-10-11 19:39:27 +0100
committerEmil Velikov <[email protected]>2016-10-14 11:09:00 +0100
commit48267b730cdf3e4ce78449cee10413cb5e73fb50 (patch)
tree101e2437b05a697b3cb91b76b6a11f9edaec73bf /src/gallium/include
parent792148f16a70e3aa62b9f2c9f9dc95db6487cca5 (diff)
gallium: annotate sw_driver_descriptor instance as const data
Already treated and handled as such. Signed-off-by: Emil Velikov <[email protected]> Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/include')
-rw-r--r--src/gallium/include/state_tracker/sw_driver.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/include/state_tracker/sw_driver.h b/src/gallium/include/state_tracker/sw_driver.h
index 0eb2b44d6fd..1d59bd5fe56 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