diff options
author | Brian Paul <[email protected]> | 2010-01-13 15:03:42 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-01-13 15:10:57 -0700 |
commit | 0b279c5382da021a71cdc8ed3afa09983817539c (patch) | |
tree | 13bcc1430ffa29fbdbb3885cc8a27a7ac0f81266 | |
parent | db58192cfb63cbb7b1d84e7ae7429799ce888164 (diff) |
llvmpipe: indentation fixes
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_setup.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_setup.c b/src/gallium/drivers/llvmpipe/lp_setup.c index 4f77d04ca53..11b1b5f319f 100644 --- a/src/gallium/drivers/llvmpipe/lp_setup.c +++ b/src/gallium/drivers/llvmpipe/lp_setup.c @@ -292,13 +292,13 @@ lp_setup_clear( struct setup_context *setup, */ if (flags & PIPE_CLEAR_COLOR) lp_scene_bin_everywhere( scene, - lp_rast_clear_color, - setup->clear.color ); + lp_rast_clear_color, + setup->clear.color ); if (setup->clear.flags & PIPE_CLEAR_DEPTHSTENCIL) lp_scene_bin_everywhere( scene, - lp_rast_clear_zstencil, - setup->clear.zstencil ); + lp_rast_clear_zstencil, + setup->clear.zstencil ); } else { /* Put ourselves into the 'pre-clear' state, specifically to try |