diff options
author | Emil Velikov <[email protected]> | 2016-10-11 19:39:27 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2016-10-14 11:09:00 +0100 |
commit | 48267b730cdf3e4ce78449cee10413cb5e73fb50 (patch) | |
tree | 101e2437b05a697b3cb91b76b6a11f9edaec73bf /src/gallium/include | |
parent | 792148f16a70e3aa62b9f2c9f9dc95db6487cca5 (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.h | 2 |
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 |