Re: [Mesa-dev] [PATCH 3/8] tgsi: provide a way to encode memory qualifiers for SSBO

2016-01-04 Thread Marek Olšák
On Sun, Jan 3, 2016 at 5:37 AM, Ilia Mirkin wrote: > Each load/store on most hardware can specify what caching to do. Since > SSBO allows individual variables to also have separate caching modes, > allow loads/stores to have the qualifiers instead of attempting to > encode

[Mesa-dev] [PATCH 3/8] tgsi: provide a way to encode memory qualifiers for SSBO

2016-01-02 Thread Ilia Mirkin
Each load/store on most hardware can specify what caching to do. Since SSBO allows individual variables to also have separate caching modes, allow loads/stores to have the qualifiers instead of attempting to encode them in declarations. Signed-off-by: Ilia Mirkin ---