diff options
author | Marek Olšák <[email protected]> | 2013-04-11 15:29:41 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2013-05-15 20:20:32 +0200 |
commit | 5a3fac4d2667b5d46058564151142fec158f5f82 (patch) | |
tree | f8e511f280ad4edb547ad8e755ff261298e6e37a /src/gallium/drivers/r600/r600_asm.h | |
parent | 61c995bc47b838317a4a62fba2ff2031bcb0c23e (diff) |
r600g: cleanup MSAA texture support checking
Reviewed-by: Alex Deucher <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600/r600_asm.h')
-rw-r--r-- | src/gallium/drivers/r600/r600_asm.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/r600/r600_asm.h b/src/gallium/drivers/r600/r600_asm.h index bbebaec84cc..6ab5dacec5d 100644 --- a/src/gallium/drivers/r600/r600_asm.h +++ b/src/gallium/drivers/r600/r600_asm.h @@ -195,7 +195,7 @@ struct r600_stack_info { struct r600_bytecode { enum chip_class chip_class; - enum r600_msaa_texture_mode msaa_texture_mode; + bool has_compressed_msaa_texturing; int type; struct list_head cf; struct r600_bytecode_cf *cf_last; @@ -225,7 +225,7 @@ int eg_bytecode_cf_build(struct r600_bytecode *bc, struct r600_bytecode_cf *cf); void r600_bytecode_init(struct r600_bytecode *bc, enum chip_class chip_class, enum radeon_family family, - enum r600_msaa_texture_mode msaa_texture_mode); + bool has_compressed_msaa_texturing); void r600_bytecode_clear(struct r600_bytecode *bc); int r600_bytecode_add_alu(struct r600_bytecode *bc, const struct r600_bytecode_alu *alu); |