r600g: evergreen add stencil export bit
authorDave Airlie <airlied@redhat.com>
Wed, 13 Oct 2010 07:40:32 +0000 (17:40 +1000)
committerDave Airlie <airlied@redhat.com>
Wed, 13 Oct 2010 07:40:32 +0000 (17:40 +1000)
src/gallium/drivers/r600/evergreen_state.c

index 49a888a..379d66f 100644 (file)
@@ -1558,6 +1558,11 @@ void evergreen_pipe_shader_ps(struct pipe_context *ctx, struct r600_pipe_shader
                                                R_02880C_DB_SHADER_CONTROL,
                                                S_02880C_Z_EXPORT_ENABLE(1),
                                                S_02880C_Z_EXPORT_ENABLE(1), NULL);
+               if (rshader->output[i].name == TGSI_SEMANTIC_STENCIL)
+                       r600_pipe_state_add_reg(rstate,
+                                               R_02880C_DB_SHADER_CONTROL,
+                                               S_02880C_STENCIL_EXPORT_ENABLE(1),
+                                               S_02880C_STENCIL_EXPORT_ENABLE(1), NULL);
        }
 
        exports_ps = 0;