Re: [Mesa-dev] [PATCH] radeonsi Add disk shader cache

2017-01-24 Thread kdj0c
On 24/01/2017 22:59, Timothy Arceri wrote: On Tue, 2017-01-24 at 18:10 +0100, kdj0c wrote: On 24/01/2017 17:40, Nicolai Hähnle wrote: On 24.01.2017 17:08, kdj0c wrote: use the util/disk_cache.c interface to cache some? radeonsi shaders on disk missing features : - add #if

Re: [Mesa-dev] [PATCH] radeonsi Add disk shader cache

2017-01-24 Thread kdj0c
On 24/01/2017 17:40, Nicolai Hähnle wrote: On 24.01.2017 17:08, kdj0c wrote: use the util/disk_cache.c interface to cache some? radeonsi shaders on disk missing features : - add #if ENABLE_SHADER_CACHE where needed. - when loading from disk cache, also insert it to RAM cache. must be built

[Mesa-dev] [PATCH] radeonsi Add disk shader cache

2017-01-24 Thread kdj0c
use the util/disk_cache.c interface to cache some? radeonsi shaders on disk missing features : - add #if ENABLE_SHADER_CACHE where needed. - when loading from disk cache, also insert it to RAM cache. must be built with --enable-shader-cache to have the cache working. --- Hi, This is my first mai