diff options
author | Christian König <[email protected]> | 2010-12-18 21:32:16 +0100 |
---|---|---|
committer | Christian König <[email protected]> | 2011-01-13 23:01:35 +0100 |
commit | eea1d8199b376f37027c14669e0bdf991a22872d (patch) | |
tree | 571c1e99e22517c7c312048c766963f301eae0be /src/gallium/drivers/r600/r600_asm.h | |
parent | 4bcff0c19091c7df2b2e0bafe58addb5bae28f1a (diff) |
r600g: implement replacing gpr with pv and ps
Diffstat (limited to 'src/gallium/drivers/r600/r600_asm.h')
-rw-r--r-- | src/gallium/drivers/r600/r600_asm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/r600_asm.h b/src/gallium/drivers/r600/r600_asm.h index a9123299f1e..2a046d1e88d 100644 --- a/src/gallium/drivers/r600/r600_asm.h +++ b/src/gallium/drivers/r600/r600_asm.h @@ -46,7 +46,6 @@ struct r600_bc_alu_dst { struct r600_bc_alu { struct list_head list; - struct list_head bs_list; /* bank swizzle list */ struct r600_bc_alu_src src[3]; struct r600_bc_alu_dst dst; unsigned inst; @@ -144,6 +143,7 @@ struct r600_bc_cf { struct list_head vtx; struct r600_bc_output output; struct r600_bc_alu *curr_bs_head; + struct r600_bc_alu *prev_bs_head; }; #define FC_NONE 0 |