diff options
author | Brian Paul <[email protected]> | 2008-03-19 18:10:09 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-03-19 18:10:09 -0600 |
commit | 122ed506f4b808503b230bade421018614dbe696 (patch) | |
tree | a5df6a4d6ddc14bbe0945c70e126a95ee961c974 /src/gallium/drivers/softpipe/sp_quad_stipple.c | |
parent | ba31cf68551e409c7360995a35d836c22d9e0e75 (diff) |
gallium: added fb_width/height fields to softpipe context
These are convenience fields. Otherwise, we have to check cbuf[0] or zsbuf
in various places.
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_quad_stipple.c')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_quad_stipple.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/softpipe/sp_quad_stipple.c b/src/gallium/drivers/softpipe/sp_quad_stipple.c index 8660432259c..9a39249576b 100644 --- a/src/gallium/drivers/softpipe/sp_quad_stipple.c +++ b/src/gallium/drivers/softpipe/sp_quad_stipple.c @@ -25,7 +25,7 @@ stipple_quad(struct quad_stage *qs, struct quad_header *quad) int y0, y1; uint stipple0, stipple1; if (softpipe->rasterizer->origin_lower_left) { - y0 = softpipe->framebuffer.cbufs[0]->height - 1 - quad->y0; + y0 = softpipe->fb_height - 1 - quad->y0; y1 = y0 - 1; } else { |