r600g: fix exports_ps to export a number not a mask.

This commit is contained in:
Henri Verbeet 2010-09-20 09:29:43 +10:00 committed by Dave Airlie
parent b83156d42f
commit f1cf04dbc0
2 changed files with 2 additions and 2 deletions

View File

@ -961,10 +961,10 @@ static int eg_ps_shader(struct r600_context *rctx, struct r600_context_state *rp
if (rshader->output[i].name == TGSI_SEMANTIC_POSITION)
exports_ps |= 1;
else if (rshader->output[i].name == TGSI_SEMANTIC_COLOR) {
exports_ps |= (1 << (num_cout+1));
num_cout++;
}
}
exports_ps |= (1 << num_cout);
if (!exports_ps) {
/* always at least export 1 component per pixel */
exports_ps = 2;

View File

@ -974,10 +974,10 @@ static int r600_ps_shader(struct r600_context *rctx, struct r600_context_state *
if (rshader->output[i].name == TGSI_SEMANTIC_POSITION)
exports_ps |= 1;
else if (rshader->output[i].name == TGSI_SEMANTIC_COLOR) {
exports_ps |= (1 << (num_cout+1));
num_cout++;
}
}
exports_ps |= (num_cout << 1);
if (!exports_ps) {
/* always at least export 1 component per pixel */
exports_ps = 2;