diff options
author | Marek Olšák <[email protected]> | 2012-01-29 23:13:39 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2012-01-31 23:12:30 +0100 |
commit | 78293b99b23268e6698f1267aaf40647c17d95a5 (patch) | |
tree | 2c138dcd60528497f9b78de46cc68e1f27a90568 /src/gallium/drivers/r600/r600_asm.h | |
parent | ffe376d5a74dee837dc1a421de29ae551087630f (diff) |
r600g: remove u8,u16,u32,u64 types
Diffstat (limited to 'src/gallium/drivers/r600/r600_asm.h')
-rw-r--r-- | src/gallium/drivers/r600/r600_asm.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/drivers/r600/r600_asm.h b/src/gallium/drivers/r600/r600_asm.h index a68b299c713..3d6544b2e39 100644 --- a/src/gallium/drivers/r600/r600_asm.h +++ b/src/gallium/drivers/r600/r600_asm.h @@ -194,8 +194,8 @@ struct r600_bytecode { unsigned nstack; unsigned nresource; unsigned force_add_cf; - u32 *bytecode; - u32 fc_sp; + uint32_t *bytecode; + uint32_t fc_sp; struct r600_cf_stack_entry fc_stack[32]; unsigned call_sp; struct r600_cf_callstack callstack[SQ_MAX_CALL_DEPTH]; @@ -218,7 +218,7 @@ int r600_bytecode_add_output(struct r600_bytecode *bc, const struct r600_bytecod int r600_bytecode_build(struct r600_bytecode *bc); int r600_bytecode_add_cfinst(struct r600_bytecode *bc, int inst); int r600_bytecode_add_alu_type(struct r600_bytecode *bc, const struct r600_bytecode_alu *alu, int type); -void r600_bytecode_special_constants(u32 value, unsigned *sel, unsigned *neg); +void r600_bytecode_special_constants(uint32_t value, unsigned *sel, unsigned *neg); void r600_bytecode_dump(struct r600_bytecode *bc); int cm_bytecode_add_cf_end(struct r600_bytecode *bc); |