svga: Stippled lines can also be drawn with triangles.

This commit is contained in:
José Fonseca
2011-02-11 07:47:34 +00:00
parent de22d8f1ee
commit f0ca9f7134
2 changed files with 3 additions and 2 deletions
@@ -108,7 +108,8 @@ svga_create_rasterizer_state(struct pipe_context *pipe,
}
if (templ->line_stipple_enable) {
/* LinePattern not implemented on all backends.
/* XXX: LinePattern not implemented on all backends, and there is no
* mechanism to query it.
*/
if (!svga->debug.force_hw_line_stipple) {
SVGA3dLinePattern lp;
+1 -1
View File
@@ -61,7 +61,7 @@ static void set_draw_viewport( struct svga_context *svga )
* going to be drawn with triangles, but we're not catching all
* cases where that will happen.
*/
if (svga->curr.rast->templ.line_width > 1.0)
if (svga->curr.rast->need_pipeline & SVGA_PIPELINE_FLAG_LINES)
{
adjx = SVGA_LINE_ADJ_X + 0.175;
adjy = SVGA_LINE_ADJ_Y - 0.175;