From: Brian Paul Date: Thu, 7 Apr 2011 17:25:46 +0000 (-0600) Subject: svga: another tweak to adjust_x term (use -0.5) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6638b4a590aa07dbe05f6647da90a00a4c0d57a8;p=mesa.git svga: another tweak to adjust_x term (use -0.5) --- diff --git a/src/gallium/drivers/svga/svga_state_framebuffer.c b/src/gallium/drivers/svga/svga_state_framebuffer.c index 8ad6ab4c29c..47bdc253d7b 100644 --- a/src/gallium/drivers/svga/svga_state_framebuffer.c +++ b/src/gallium/drivers/svga/svga_state_framebuffer.c @@ -296,7 +296,7 @@ static int emit_viewport( struct svga_context *svga, break; case PIPE_PRIM_POINTS: case PIPE_PRIM_TRIANGLES: - adjust_x = -0.25; + adjust_x = -0.5; adjust_y = -0.5; break; }