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/evergreen_state.c | |
parent | ffe376d5a74dee837dc1a421de29ae551087630f (diff) |
r600g: remove u8,u16,u32,u64 types
Diffstat (limited to 'src/gallium/drivers/r600/evergreen_state.c')
-rw-r--r-- | src/gallium/drivers/r600/evergreen_state.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/drivers/r600/evergreen_state.c b/src/gallium/drivers/r600/evergreen_state.c index 248411021f8..72ce29c579c 100644 --- a/src/gallium/drivers/r600/evergreen_state.c +++ b/src/gallium/drivers/r600/evergreen_state.c @@ -718,7 +718,7 @@ static void *evergreen_create_blend_state(struct pipe_context *ctx, struct r600_pipe_context *rctx = (struct r600_pipe_context *)ctx; struct r600_pipe_blend *blend = CALLOC_STRUCT(r600_pipe_blend); struct r600_pipe_state *rstate; - u32 color_control, target_mask; + uint32_t color_control, target_mask; /* FIXME there is more then 8 framebuffer */ unsigned blend_cntl[8]; @@ -1248,7 +1248,7 @@ static void evergreen_set_scissor_state(struct pipe_context *ctx, { struct r600_pipe_context *rctx = (struct r600_pipe_context *)ctx; struct r600_pipe_state *rstate = CALLOC_STRUCT(r600_pipe_state); - u32 tl, br; + uint32_t tl, br; if (rstate == NULL) return; @@ -1519,7 +1519,7 @@ static void evergreen_set_framebuffer_state(struct pipe_context *ctx, { struct r600_pipe_context *rctx = (struct r600_pipe_context *)ctx; struct r600_pipe_state *rstate = CALLOC_STRUCT(r600_pipe_state); - u32 shader_mask, tl, br; + uint32_t shader_mask, tl, br; int tl_x, tl_y, br_x, br_y; if (rstate == NULL) |