Mesa (master): llvmpipe: fix (potentially) broken AA points, AA lines

Brian Paul brianp at kemper.freedesktop.org
Wed Feb 3 01:55:47 UTC 2010


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

Author: Brian Paul <brianp at vmware.com>
Date:   Tue Feb  2 18:43:11 2010 -0700

llvmpipe: fix (potentially) broken AA points, AA lines

This patch duplicates the softpipe fix seen in the preceeding commit.

---

 src/gallium/drivers/softpipe/sp_state_derived.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/gallium/drivers/softpipe/sp_state_derived.c b/src/gallium/drivers/softpipe/sp_state_derived.c
index f6856a5..12d1f52 100644
--- a/src/gallium/drivers/softpipe/sp_state_derived.c
+++ b/src/gallium/drivers/softpipe/sp_state_derived.c
@@ -67,7 +67,7 @@ softpipe_get_vertex_info(struct softpipe_context *softpipe)
       /* compute vertex layout now */
       const struct sp_fragment_shader *spfs = softpipe->fs;
       struct vertex_info *vinfo_vbuf = &softpipe->vertex_info_vbuf;
-      const uint num = draw_current_shader_outputs(softpipe->draw);
+      const uint num = draw_num_shader_outputs(softpipe->draw);
       uint i;
 
       /* Tell draw_vbuf to simply emit the whole post-xform vertex




More information about the mesa-commit mailing list