diff options
author | Corbin Simpson <[email protected]> | 2009-03-01 18:24:40 -0800 |
---|---|---|
committer | Corbin Simpson <[email protected]> | 2009-03-01 18:24:40 -0800 |
commit | b70f344e223fc10df8df08a6d82a813505225712 (patch) | |
tree | 8a116137c9ae800a049bdb9894046f2127bfb3c8 /src/gallium/drivers/r300/r300_surface.c | |
parent | af8a41e5c7d92cf17c12ce9336a0c3f3e20bd275 (diff) |
r300-gallium: Clean up casts and indents.
Diffstat (limited to 'src/gallium/drivers/r300/r300_surface.c')
-rw-r--r-- | src/gallium/drivers/r300/r300_surface.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/r300/r300_surface.c b/src/gallium/drivers/r300/r300_surface.c index 3b6106a8a1a..288d8dea15e 100644 --- a/src/gallium/drivers/r300/r300_surface.c +++ b/src/gallium/drivers/r300/r300_surface.c @@ -33,9 +33,10 @@ static void r300_surface_fill(struct pipe_context* pipe, { struct r300_context* r300 = r300_context(pipe); CS_LOCALS(r300); - struct r300_capabilities* caps = ((struct r300_screen*)pipe->screen)->caps; + struct r300_capabilities* caps = r300_screen(pipe->screen)->caps; struct r300_texture* tex = (struct r300_texture*)dest->texture; int i; + float r, g, b, a; unsigned pixpitch = tex->stride / tex->tex.block.size; r = (float)((color >> 16) & 0xff) / 255.0f; |