From: Brian Paul Date: Sun, 18 Apr 2010 16:01:04 +0000 (-0600) Subject: softpipe: new comment and assertion for face value X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8fd0e453d7ccae2bf71573e99ba486e99b0c6882;p=mesa.git softpipe: new comment and assertion for face value --- diff --git a/src/gallium/drivers/softpipe/sp_quad_depth_test.c b/src/gallium/drivers/softpipe/sp_quad_depth_test.c index 4ee31969e6b..72117c233e5 100644 --- a/src/gallium/drivers/softpipe/sp_quad_depth_test.c +++ b/src/gallium/drivers/softpipe/sp_quad_depth_test.c @@ -520,6 +520,9 @@ depth_stencil_test_quad(struct quad_stage *qs, face = 0; } + /* 0 = front-face, 1 = back-face */ + assert(face == 0 || face == 1); + /* choose front or back face function, operator, etc */ /* XXX we could do these initializations once per primitive */ func = softpipe->depth_stencil->stencil[face].func;