Re: [Mesa-dev] [PATCH 01/10] gallium: add a common uploader to pipe_context

2017-02-01 Thread Brian Paul
On 01/30/2017 10:06 AM, Nicolai Hähnle wrote: On 27.01.2017 16:02, Marek Olšák wrote: On Fri, Jan 27, 2017 at 3:38 PM, Roland Scheidegger wrote: Am 27.01.2017 um 12:02 schrieb Marek Olšák: From: Marek Olšák For lower memory usage and more efficient updates of the buffer residency list. (e.g

Re: [Mesa-dev] [PATCH 01/10] gallium: add a common uploader to pipe_context

2017-02-01 Thread Marek Olšák
FYI, if there are no other comments, I'll push this series. Marek On Mon, Jan 30, 2017 at 6:06 PM, Nicolai Hähnle wrote: > On 27.01.2017 16:02, Marek Olšák wrote: >> >> On Fri, Jan 27, 2017 at 3:38 PM, Roland Scheidegger >> wrote: >>> >>> Am 27.01.2017 um 12:02 schrieb Marek Olšák: Fr

Re: [Mesa-dev] [PATCH 01/10] gallium: add a common uploader to pipe_context

2017-01-30 Thread Nicolai Hähnle
On 27.01.2017 16:02, Marek Olšák wrote: On Fri, Jan 27, 2017 at 3:38 PM, Roland Scheidegger wrote: Am 27.01.2017 um 12:02 schrieb Marek Olšák: From: Marek Olšák For lower memory usage and more efficient updates of the buffer residency list. (e.g. if drivers keep seeing the same buffer for ma

Re: [Mesa-dev] [PATCH 01/10] gallium: add a common uploader to pipe_context

2017-01-27 Thread Marek Olšák
On Fri, Jan 27, 2017 at 3:38 PM, Roland Scheidegger wrote: > Am 27.01.2017 um 12:02 schrieb Marek Olšák: >> From: Marek Olšák >> >> For lower memory usage and more efficient updates of the buffer residency >> list. (e.g. if drivers keep seeing the same buffer for many consecutive >> "add" calls,

Re: [Mesa-dev] [PATCH 01/10] gallium: add a common uploader to pipe_context

2017-01-27 Thread Roland Scheidegger
Am 27.01.2017 um 12:02 schrieb Marek Olšák: > From: Marek Olšák > > For lower memory usage and more efficient updates of the buffer residency > list. (e.g. if drivers keep seeing the same buffer for many consecutive > "add" calls, the calls can be turned into no-ops trivially) > --- > src/galliu

[Mesa-dev] [PATCH 01/10] gallium: add a common uploader to pipe_context

2017-01-27 Thread Marek Olšák
From: Marek Olšák For lower memory usage and more efficient updates of the buffer residency list. (e.g. if drivers keep seeing the same buffer for many consecutive "add" calls, the calls can be turned into no-ops trivially) --- src/gallium/include/pipe/p_context.h | 7 +++ 1 file changed, 7