From: Eric Anholt Date: Fri, 27 Aug 2010 00:04:30 +0000 (-0700) Subject: i965: Abort on gl_FragDepth in the new FS backend for now. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3dff682b6595c8771655307ed00bd8844f22238c;p=mesa.git i965: Abort on gl_FragDepth in the new FS backend for now. It hangs the GPU due to FB_WRITE handling being incomplete. There are bigger issues to handle first. --- diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp index 4a313a2e100..af9754064ca 100644 --- a/src/mesa/drivers/dri/i965/brw_fs.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs.cpp @@ -530,6 +530,7 @@ fs_visitor::visit(ir_variable *ir) this->frag_data = ir; } else if (strcmp(ir->name, "gl_FragDepth") == 0) { this->frag_depth = ir; + assert(!"FINISHME: this hangs currently."); } if (ir->mode == ir_var_in) {