diff options
author | Henri Verbeet <[email protected]> | 2011-04-25 13:28:55 +0200 |
---|---|---|
committer | Henri Verbeet <[email protected]> | 2011-04-25 14:06:22 +0200 |
commit | b2a98c3531c276b76024bb9b10fdd6c3360cb0c9 (patch) | |
tree | 53bb40b9715e5d44296a86734b36704d35144493 /src/gallium/drivers/r600/r600_shader.c | |
parent | d7577ae3a6d6e174ab36d244f6bd4dedd63c3d1d (diff) |
r600g: Unify comment style somewhat.
Signed-off-by: Henri Verbeet <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600/r600_shader.c')
-rw-r--r-- | src/gallium/drivers/r600/r600_shader.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/gallium/drivers/r600/r600_shader.c b/src/gallium/drivers/r600/r600_shader.c index 96ac59b2e93..0f4c0134dce 100644 --- a/src/gallium/drivers/r600/r600_shader.c +++ b/src/gallium/drivers/r600/r600_shader.c @@ -1993,9 +1993,11 @@ static int tgsi_exp(struct r600_shader_ctx *ctx) r600_bc_src(&alu.src[0], &ctx->src[0], 0); alu.dst.sel = ctx->temp_reg; -// r = tgsi_dst(ctx, &inst->Dst[0], i, &alu.dst); -// if (r) -// return r; +#if 0 + r = tgsi_dst(ctx, &inst->Dst[0], i, &alu.dst); + if (r) + return r; +#endif alu.dst.write = 1; alu.dst.chan = 1; |