Mesa (master): svga: Enable the draw pipeline for smooth lines.

Jose Fonseca jrfonseca at kemper.freedesktop.org
Fri Feb 11 12:33:00 UTC 2011


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

Author: José Fonseca <jfonseca at vmware.com>
Date:   Fri Feb 11 11:22:02 2011 +0000

svga: Enable the draw pipeline for smooth lines.

Spotted by Brian Paul.

---

 src/gallium/drivers/svga/svga_pipe_rasterizer.c |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/src/gallium/drivers/svga/svga_pipe_rasterizer.c b/src/gallium/drivers/svga/svga_pipe_rasterizer.c
index 2c4292e..f2c1a3c 100644
--- a/src/gallium/drivers/svga/svga_pipe_rasterizer.c
+++ b/src/gallium/drivers/svga/svga_pipe_rasterizer.c
@@ -127,6 +127,11 @@ svga_create_rasterizer_state(struct pipe_context *pipe,
       rast->need_pipeline_points_str = "smooth points";
    }
 
+   if (templ->line_smooth) {
+      rast->need_pipeline |= SVGA_PIPELINE_FLAG_LINES;
+      rast->need_pipeline_lines_str = "smooth lines";
+   }
+
    {
       int fill_front = templ->fill_front;
       int fill_back = templ->fill_back;




More information about the mesa-commit mailing list