Module: Mesa Branch: master Commit: f0602dc92044ea6d738d0e539e52f938a41f6093 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=f0602dc92044ea6d738d0e539e52f938a41f6093
Author: Tim Rowley <[email protected]> Date: Tue Aug 22 10:39:57 2017 -0500 swr: limit pipe_draw_info->restart_index usage Only copy this value when in restart drawing mode. Eliminates valgrind errors when running trivial programs. Reviewed-by: Bruce Cherniak <[email protected]> --- src/gallium/drivers/swr/swr_draw.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/gallium/drivers/swr/swr_draw.cpp b/src/gallium/drivers/swr/swr_draw.cpp index df1c11abeb..2363800f80 100644 --- a/src/gallium/drivers/swr/swr_draw.cpp +++ b/src/gallium/drivers/swr/swr_draw.cpp @@ -107,7 +107,10 @@ swr_draw_vbo(struct pipe_context *pipe, const struct pipe_draw_info *info) } struct swr_vertex_element_state *velems = ctx->velems; - velems->fsState.cutIndex = info->restart_index; + if (info->primitive_restart) + velems->fsState.cutIndex = info->restart_index; + else + velems->fsState.cutIndex = 0; velems->fsState.bEnableCutIndex = info->primitive_restart; velems->fsState.bPartialVertexBuffer = (info->min_index > 0); _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
