Mesa (master): draw: (trivial) remove duplicated lines

Roland Scheidegger sroland at kemper.freedesktop.org
Thu Sep 18 14:13:36 UTC 2014


Module: Mesa
Branch: master
Commit: 019ca99bee14e793751e3460309bf4132ee76225
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=019ca99bee14e793751e3460309bf4132ee76225

Author: Roland Scheidegger <sroland at vmware.com>
Date:   Thu Sep 18 16:11:04 2014 +0200

draw: (trivial) remove duplicated lines

---

 .../auxiliary/draw/draw_pt_fetch_shade_pipeline_llvm.c     |   12 ------------
 1 file changed, 12 deletions(-)

diff --git a/src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline_llvm.c b/src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline_llvm.c
index 5549cb3..54dc47a 100644
--- a/src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline_llvm.c
+++ b/src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline_llvm.c
@@ -192,18 +192,6 @@ llvm_middle_end_prepare( struct draw_pt_middle_end *middle,
     */
    fpme->vertex_size = sizeof(struct vertex_header) + nr * 4 * sizeof(float);
 
-   /* Get the number of float[4] attributes per vertex.
-    * Note: this must be done after draw_pt_emit_prepare() since that
-    * can effect the vertex size.
-    */
-   nr = MAX2(vs->info.num_inputs, draw_total_vs_outputs(draw));
-
-   /* Always leave room for the vertex header whether we need it or
-    * not.  It's hard to get rid of it in particular because of the
-    * viewport code in draw_pt_post_vs.c.
-    */
-   fpme->vertex_size = sizeof(struct vertex_header) + nr * 4 * sizeof(float);
-
    /* return even number */
    *max_vertices = *max_vertices & ~1;
 




More information about the mesa-commit mailing list