diff options
author | Marek Olšák <[email protected]> | 2015-05-18 12:34:44 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2015-05-26 11:46:28 +0200 |
commit | 92c31bb0dd8149d3e5db48b8dec62b242be80d28 (patch) | |
tree | 7d45b49821fd3e723422e5fac0075bb549b07760 /src/gallium/include | |
parent | 967825d053f71c5f5fc3ba31eabc0c6004fde4f1 (diff) |
gallium: use const in set_tess_state
Reviewed-by: Ilia Mirkin <[email protected]>
Diffstat (limited to 'src/gallium/include')
-rw-r--r-- | src/gallium/include/pipe/p_context.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/include/pipe/p_context.h b/src/gallium/include/pipe/p_context.h index c25bfa638c1..c2eedf8e7c7 100644 --- a/src/gallium/include/pipe/p_context.h +++ b/src/gallium/include/pipe/p_context.h @@ -232,8 +232,8 @@ struct pipe_context { struct pipe_sampler_view **); void (*set_tess_state)(struct pipe_context *, - float default_outer_level[4], - float default_inner_level[2]); + const float default_outer_level[4], + const float default_inner_level[2]); /** * Bind an array of shader resources that will be used by the |