From 363e6020429f31d6b923fcd05407d7f3e36bc9ba Mon Sep 17 00:00:00 2001 From: Brian Date: Mon, 25 Jun 2007 09:45:10 -0600 Subject: clean-ups --- src/mesa/pipe/softpipe/sp_quad_depth_test.c | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'src/mesa/pipe/softpipe/sp_quad_depth_test.c') diff --git a/src/mesa/pipe/softpipe/sp_quad_depth_test.c b/src/mesa/pipe/softpipe/sp_quad_depth_test.c index 9104b943ec..5229b31016 100644 --- a/src/mesa/pipe/softpipe/sp_quad_depth_test.c +++ b/src/mesa/pipe/softpipe/sp_quad_depth_test.c @@ -44,14 +44,9 @@ depth_test_quad(struct quad_stage *qs, struct quad_header *quad) GLfloat zzzz[QUAD_SIZE]; /**< Z for four pixels in quad */ GLuint zmask = 0; -#if 0 assert(sps); /* shouldn't get here if there's no zbuffer */ -#else - if (!sps) - return; -#endif - /* XXX get zquad from zbuffer */ + /* get zquad from zbuffer */ sps->read_quad_z(sps, quad->x0, quad->y0, zzzz); switch (softpipe->depth_test.func) { @@ -94,7 +89,7 @@ depth_test_quad(struct quad_stage *qs, struct quad_header *quad) } } - /* XXX write updated zquad to zbuffer */ + /* write updated zquad to zbuffer */ sps->write_quad_z(sps, quad->x0, quad->y0, zzzz); } -- cgit v1.2.3