diff options
author | Jerome Glisse <[email protected]> | 2013-01-04 11:46:13 -0500 |
---|---|---|
committer | Jerome Glisse <[email protected]> | 2013-01-07 11:06:02 -0500 |
commit | d499ff98cd69c9ec6c43ad8ececa4c3b61889ab9 (patch) | |
tree | 19d0eb6d0eec3c21d4407127facef024740962c6 /src/gallium/drivers/r600/r600_pipe.c | |
parent | afec10df373f342f058aab66c622237964a4a147 (diff) |
r600g/radeon/winsys: indentation cleanup
Signed-off-by: Jerome Glisse <[email protected]>
Reviewed-by: Alex Deucher <[email protected]>
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600/r600_pipe.c')
-rw-r--r-- | src/gallium/drivers/r600/r600_pipe.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/gallium/drivers/r600/r600_pipe.c b/src/gallium/drivers/r600/r600_pipe.c index f6db3bf9699..7a7a4315ec8 100644 --- a/src/gallium/drivers/r600/r600_pipe.c +++ b/src/gallium/drivers/r600/r600_pipe.c @@ -292,21 +292,21 @@ static struct pipe_context *r600_create_context(struct pipe_screen *screen, void rctx->cs = rctx->ws->cs_create(rctx->ws); rctx->ws->cs_set_flush_callback(rctx->cs, r600_flush_from_winsys, rctx); - rctx->uploader = u_upload_create(&rctx->context, 1024 * 1024, 256, - PIPE_BIND_INDEX_BUFFER | - PIPE_BIND_CONSTANT_BUFFER); - if (!rctx->uploader) - goto fail; + rctx->uploader = u_upload_create(&rctx->context, 1024 * 1024, 256, + PIPE_BIND_INDEX_BUFFER | + PIPE_BIND_CONSTANT_BUFFER); + if (!rctx->uploader) + goto fail; rctx->allocator_fetch_shader = u_suballocator_create(&rctx->context, 64 * 1024, 256, 0, PIPE_USAGE_STATIC, FALSE); - if (!rctx->allocator_fetch_shader) - goto fail; + if (!rctx->allocator_fetch_shader) + goto fail; rctx->allocator_so_filled_size = u_suballocator_create(&rctx->context, 4096, 4, - 0, PIPE_USAGE_STATIC, TRUE); + 0, PIPE_USAGE_STATIC, TRUE); if (!rctx->allocator_so_filled_size) - goto fail; + goto fail; rctx->blitter = util_blitter_create(&rctx->context); if (rctx->blitter == NULL) |