diff options
author | Chia-I Wu <[email protected]> | 2014-08-26 13:31:29 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2014-08-26 14:10:50 +0800 |
commit | 354d84b6297fe2937e9684175ea9d3b650b75417 (patch) | |
tree | 0bb7976b12903bcc02a6c96d705ddc64ae9fde14 /src/gallium/drivers/ilo/ilo_context.c | |
parent | fbb869c1aaf6aa5400028556e23bbbb1ba41ce42 (diff) |
ilo: remove max_batch_size
It is used to derive an artificial limit on max relocs per bo. We choose not
to export it anymore.
Diffstat (limited to 'src/gallium/drivers/ilo/ilo_context.c')
-rw-r--r-- | src/gallium/drivers/ilo/ilo_context.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/gallium/drivers/ilo/ilo_context.c b/src/gallium/drivers/ilo/ilo_context.c index ab750acd24c..04df389c6c2 100644 --- a/src/gallium/drivers/ilo/ilo_context.c +++ b/src/gallium/drivers/ilo/ilo_context.c @@ -104,7 +104,6 @@ ilo_context_create(struct pipe_screen *screen, void *priv) { struct ilo_screen *is = ilo_screen(screen); struct ilo_context *ilo; - int cp_size; ilo = CALLOC_STRUCT(ilo_context); if (!ilo) @@ -121,11 +120,7 @@ ilo_context_create(struct pipe_screen *screen, void *priv) sizeof(struct ilo_transfer), 64, UTIL_SLAB_SINGLETHREADED); /* 8192 DWords */ - cp_size = 8192; - if (cp_size * 4 > is->dev.max_batch_size) - cp_size = is->dev.max_batch_size / 4; - - ilo->cp = ilo_cp_create(ilo->winsys, cp_size, is->dev.has_llc); + ilo->cp = ilo_cp_create(ilo->winsys, 8192, is->dev.has_llc); ilo->shader_cache = ilo_shader_cache_create(); if (ilo->cp) ilo->hw3d = ilo_3d_create(ilo->cp, ilo->dev); |