diff options
author | Kenneth Graunke <[email protected]> | 2018-03-26 15:58:05 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2018-03-27 18:41:44 -0700 |
commit | 037d738a23d626f23107f7190592d575aabe17fd (patch) | |
tree | d4a718e2bcd4d50e821e9f3ba3eb3db1e1a54082 /src/mesa/drivers/dri/i965/brw_program.c | |
parent | 07ec3a2e0ffdfcc5e3ba9286e1b858a864b25ee1 (diff) |
i965: Drop unused alignment parameter from brw_bo_alloc().
brw_bo_alloc no longer uses this parameter, so there's no point.
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_program.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_program.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_program.c b/src/mesa/drivers/dri/i965/brw_program.c index 23743639dc8..4579a58b820 100644 --- a/src/mesa/drivers/dri/i965/brw_program.c +++ b/src/mesa/drivers/dri/i965/brw_program.c @@ -342,7 +342,7 @@ brw_get_scratch_bo(struct brw_context *brw, } if (!old_bo) { - *scratch_bo = brw_bo_alloc(brw->bufmgr, "scratch bo", size, 4096); + *scratch_bo = brw_bo_alloc(brw->bufmgr, "scratch bo", size); } } @@ -437,7 +437,7 @@ brw_alloc_stage_scratch(struct brw_context *brw, stage_state->scratch_bo = brw_bo_alloc(brw->bufmgr, "shader scratch space", - per_thread_size * thread_count, 4096); + per_thread_size * thread_count); } void brwInitFragProgFuncs( struct dd_function_table *functions ) @@ -466,7 +466,7 @@ brw_init_shader_time(struct brw_context *brw) const int max_entries = 2048; brw->shader_time.bo = brw_bo_alloc(brw->bufmgr, "shader time", - max_entries * BRW_SHADER_TIME_STRIDE * 3, 4096); + max_entries * BRW_SHADER_TIME_STRIDE * 3); brw->shader_time.names = rzalloc_array(brw, const char *, max_entries); brw->shader_time.ids = rzalloc_array(brw, int, max_entries); brw->shader_time.types = rzalloc_array(brw, enum shader_time_shader_type, |