Module: Mesa Branch: master Commit: 2686477d3757de50c31aa193bde8ad57fe539e44 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=2686477d3757de50c31aa193bde8ad57fe539e44
Author: Jason Ekstrand <[email protected]> Date: Tue Oct 20 17:40:19 2015 -0700 nir: Constify nir_gs_count_vertices Reviewed-by: Kenneth Graunke <[email protected]> --- src/glsl/nir/nir.h | 2 +- src/glsl/nir/nir_gs_count_vertices.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/glsl/nir/nir.h b/src/glsl/nir/nir.h index f65d44c..e3777f9 100644 --- a/src/glsl/nir/nir.h +++ b/src/glsl/nir/nir.h @@ -1899,7 +1899,7 @@ void nir_dump_dom_frontier(nir_shader *shader, FILE *fp); void nir_dump_cfg_impl(nir_function_impl *impl, FILE *fp); void nir_dump_cfg(nir_shader *shader, FILE *fp); -int nir_gs_count_vertices(nir_shader *shader); +int nir_gs_count_vertices(const nir_shader *shader); bool nir_split_var_copies(nir_shader *shader); diff --git a/src/glsl/nir/nir_gs_count_vertices.c b/src/glsl/nir/nir_gs_count_vertices.c index e0bdf17..1c36067 100644 --- a/src/glsl/nir/nir_gs_count_vertices.c +++ b/src/glsl/nir/nir_gs_count_vertices.c @@ -51,7 +51,7 @@ as_set_vertex_count(nir_instr *instr) * counting at the NIR level. */ int -nir_gs_count_vertices(nir_shader *shader) +nir_gs_count_vertices(const nir_shader *shader) { int count = -1; _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
