From: Tim Rowley Date: Tue, 22 Aug 2017 15:39:57 +0000 (-0500) Subject: swr: limit pipe_draw_info->restart_index usage X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f0602dc92044ea6d738d0e539e52f938a41f6093;p=mesa.git 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 --- diff --git a/src/gallium/drivers/swr/swr_draw.cpp b/src/gallium/drivers/swr/swr_draw.cpp index df1c11abeb7..2363800f805 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);