diff options
author | Dave Airlie <[email protected]> | 2010-08-30 15:19:20 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2010-08-30 15:47:49 +1000 |
commit | 47d5a19df1e7760c4f5f0e340bfc56355c2e428b (patch) | |
tree | d7fbe791858c5df9b8c5f053bb65c6eb04395cdc /src/gallium/drivers/r600/r600_asm.h | |
parent | a2711d69686a6c7f2cabe174cfefeefc718ce335 (diff) |
r600g: add initial relative support to assembler
passes another ~20 piglits.
/me starts to run out low hanging fruit around now.
Diffstat (limited to 'src/gallium/drivers/r600/r600_asm.h')
-rw-r--r-- | src/gallium/drivers/r600/r600_asm.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/r600/r600_asm.h b/src/gallium/drivers/r600/r600_asm.h index bb4f4b77b33..9e65fcdd4fa 100644 --- a/src/gallium/drivers/r600/r600_asm.h +++ b/src/gallium/drivers/r600/r600_asm.h @@ -31,6 +31,7 @@ struct r600_bc_alu_src { unsigned chan; unsigned neg; unsigned abs; + unsigned rel; }; struct r600_bc_alu_dst { @@ -38,6 +39,7 @@ struct r600_bc_alu_dst { unsigned chan; unsigned clamp; unsigned write; + unsigned rel; }; struct r600_bc_alu { |