From: Ben Skeggs Date: Fri, 13 Jun 2008 01:50:13 +0000 (+1000) Subject: nv50: disable ztest for now - it doesn't work still X-Git-Tag: android-x86-1.6~16^2~1465^2~496^2~298^2~16^2~134 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=0d7f25c890e1f1505625542c256d4512c065449a;p=android-x86%2Fexternal-mesa.git nv50: disable ztest for now - it doesn't work still --- diff --git a/src/gallium/drivers/nv50/nv50_state.c b/src/gallium/drivers/nv50/nv50_state.c index 176ebff5da4..0129b0fb144 100644 --- a/src/gallium/drivers/nv50/nv50_state.c +++ b/src/gallium/drivers/nv50/nv50_state.c @@ -247,10 +247,10 @@ nv50_depth_stencil_alpha_state_create(struct pipe_context *pipe, struct nouveau_stateobj *so = so_new(64, 0); so_method(so, tesla, NV50TCL_DEPTH_WRITE_ENABLE, 1); - so_data (so, cso->depth.writemask ? 1 : 0); + so_data (so, 0); //cso->depth.writemask ? 1 : 0); if (cso->depth.enabled) { so_method(so, tesla, NV50TCL_DEPTH_TEST_ENABLE, 1); - so_data (so, 1); + so_data (so, 0); //1); so_method(so, tesla, NV50TCL_DEPTH_TEST_FUNC, 1); so_data (so, nvgl_comparison_op(cso->depth.func)); } else {