diff options
author | Marek Olšák <[email protected]> | 2012-04-02 00:33:52 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2012-04-04 13:09:47 +0200 |
commit | a633d82ce352a69fd54a2b0e262a91f27f478119 (patch) | |
tree | 54705296276660699de08a2936c724446cf6fbc0 /src/gallium/drivers/r600/r600.h | |
parent | 68bbfc1afe210d82acfb14a78b0fd8c436a8f78c (diff) |
r600g: remove dead code after the rework
Reviewed-by: Alex Deucher <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600/r600.h')
-rw-r--r-- | src/gallium/drivers/r600/r600.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/gallium/drivers/r600/r600.h b/src/gallium/drivers/r600/r600.h index 867d9d56838..c849c99acc8 100644 --- a/src/gallium/drivers/r600/r600.h +++ b/src/gallium/drivers/r600/r600.h @@ -128,8 +128,6 @@ struct r600_pipe_resource_state { #define R600_BLOCK_STATUS_DIRTY (1 << 1) #define R600_BLOCK_STATUS_RESOURCE_DIRTY (1 << 2) -#define R600_BLOCK_STATUS_RESOURCE_VERTEX (1 << 3) - struct r600_block_reloc { struct r600_resource *bo; enum radeon_bo_usage bo_usage; @@ -245,14 +243,4 @@ static inline void r600_pipe_state_mod_reg(struct r600_pipe_state *state, state->nregs++; } -static inline void r600_pipe_state_mod_reg_bo(struct r600_pipe_state *state, - uint32_t value, struct r600_resource *bo, - enum radeon_bo_usage usage) -{ - state->regs[state->nregs].value = value; - state->regs[state->nregs].bo = bo; - state->regs[state->nregs].bo_usage = usage; - state->nregs++; -} - #endif |