diff options
author | Kenneth Graunke <[email protected]> | 2017-07-20 16:33:15 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2017-08-18 23:51:56 -0700 |
commit | 288621b1b7bdfaeab58a3b720c58c3417b206a06 (patch) | |
tree | 840ae0fb7b010ed22a81a293797fc552632f58bf | |
parent | 61d2f3f1c24323a1c067595ec78dfbfefdc72b41 (diff) |
i965: Remove tabs in intel_batchbuffer.c.
Our coding style is to use spaces. Some of this was also messed up
during my bufmgr import series.
(Trivial, just whitespace changes.)
-rw-r--r-- | src/mesa/drivers/dri/i965/intel_batchbuffer.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mesa/drivers/dri/i965/intel_batchbuffer.c b/src/mesa/drivers/dri/i965/intel_batchbuffer.c index 59488a2f969..dc92e6e7bb1 100644 --- a/src/mesa/drivers/dri/i965/intel_batchbuffer.c +++ b/src/mesa/drivers/dri/i965/intel_batchbuffer.c @@ -299,8 +299,8 @@ do_batch_dump(struct brw_context *brw) void *map = brw_bo_map(brw, batch->bo, MAP_READ); if (map == NULL) { fprintf(stderr, - "WARNING: failed to map batchbuffer, " - "dumping uploaded data instead.\n"); + "WARNING: failed to map batchbuffer, " + "dumping uploaded data instead.\n"); } uint32_t *data = map ? map : batch->map; @@ -633,10 +633,10 @@ do_flush_locked(struct brw_context *brw, int in_fence_fd, int *out_fence_fd) } else { ret = brw_bo_subdata(batch->bo, 0, 4 * USED_BATCH(*batch), batch->map); if (ret == 0 && batch->state_batch_offset != batch->bo->size) { - ret = brw_bo_subdata(batch->bo, - batch->state_batch_offset, - batch->bo->size - batch->state_batch_offset, - (char *)batch->map + batch->state_batch_offset); + ret = brw_bo_subdata(batch->bo, + batch->state_batch_offset, + batch->bo->size - batch->state_batch_offset, + (char *)batch->map + batch->state_batch_offset); } } @@ -661,7 +661,7 @@ do_flush_locked(struct brw_context *brw, int in_fence_fd, int *out_fence_fd) flags |= I915_EXEC_RENDER; } if (batch->needs_sol_reset) - flags |= I915_EXEC_GEN7_SOL_RESET; + flags |= I915_EXEC_GEN7_SOL_RESET; if (ret == 0) { uint32_t hw_ctx = batch->ring == RENDER_RING ? brw->hw_ctx : 0; |