diff options
author | Christian König <[email protected]> | 2010-12-18 21:32:16 +0100 |
---|---|---|
committer | Christian König <[email protected]> | 2010-12-18 21:32:16 +0100 |
commit | 7b0cc9bd386f62f58c39e66ce29f1423cfccdfb7 (patch) | |
tree | 844d2d92584a025fe3ad854d8af03f187e8cc69a /src/gallium/drivers/r600/r600_asm.h | |
parent | 79f881156f0e1ebb3395a151affb336a05a2cf9c (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 fc60079c3e0..94ba902fb5b 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; @@ -143,6 +142,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 |