diff options
author | Rob Clark <[email protected]> | 2014-02-19 12:02:57 -0500 |
---|---|---|
committer | Rob Clark <[email protected]> | 2014-02-19 12:02:57 -0500 |
commit | 9186cd39d42dff5a730134535c6ad647a51c44f8 (patch) | |
tree | 1a8e02bb447e63712e2529f6e680751443ba3e2c /src/gallium/drivers/freedreno/freedreno_context.h | |
parent | 5993723471a81003bd82d189836ccdd8d085a7b5 (diff) |
freedreno: tweak ringbuffer sizes/count
Since we are now consuming two ringbuffers at a time, we probably want a
pool larger than 4.. but we don't need each individual ringbuffer to be
so large, so offset the pool size increase by reducing rb size.
Signed-off-by: Rob Clark <[email protected]>
Diffstat (limited to 'src/gallium/drivers/freedreno/freedreno_context.h')
-rw-r--r-- | src/gallium/drivers/freedreno/freedreno_context.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/freedreno/freedreno_context.h b/src/gallium/drivers/freedreno/freedreno_context.h index ef83048545d..7db1fd1fa0a 100644 --- a/src/gallium/drivers/freedreno/freedreno_context.h +++ b/src/gallium/drivers/freedreno/freedreno_context.h @@ -154,7 +154,7 @@ struct fd_context { * normally have to wait before resetting to the start of the next * rb. */ - struct fd_ringbuffer *rings[4]; + struct fd_ringbuffer *rings[8]; unsigned rings_idx; /* normal draw/clear cmds: */ |