Re: [Mesa-dev] [PATCH] mesa: stop assigning unused storage for opaque types

2017-06-14 Thread Samuel Pitoiset
On 06/14/2017 09:45 AM, Nicolai Hähnle wrote: On 14.06.2017 06:44, Timothy Arceri wrote: The storage was once used by get_sampler_uniform_value() but that was fixed long ago to use the uniform storage assigned by the linker. By not assigning storage for images/samplers the constant buffer

Re: [Mesa-dev] [PATCH] mesa: stop assigning unused storage for opaque types

2017-06-14 Thread Nicolai Hähnle
On 14.06.2017 06:44, Timothy Arceri wrote: The storage was once used by get_sampler_uniform_value() but that was fixed long ago to use the uniform storage assigned by the linker. By not assigning storage for images/samplers the constant buffer for gallium drivers will be reduced which could

[Mesa-dev] [PATCH] mesa: stop assigning unused storage for opaque types

2017-06-13 Thread Timothy Arceri
The storage was once used by get_sampler_uniform_value() but that was fixed long ago to use the uniform storage assigned by the linker. By not assigning storage for images/samplers the constant buffer for gallium drivers will be reduced which could result in small perf improvements. --- This