index
:
mesa.git
gallium_va_encpackedheader01
master
Unnamed repository; edit this file 'description' to name the repository.
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
src
/
util
/
disk_cache.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
util: stop including files from mesa/main
Marek Olšák
2020-03-27
1
-1
/
+0
*
Move compiler.h and imports.h/c from src/mesa/main into src/util
Marek Olšák
2020-03-27
1
-1
/
+1
*
glsl/tests: Fix waiting for disk_cache_put() to finish.
Eric Anholt
2020-03-12
1
-0
/
+6
*
util/disk_cache: check for write() failure in the zstd path
Eric Engestrom
2020-02-05
1
-1
/
+5
*
util: Use ZSTD for shader cache if possible
Dylan Baker
2019-11-11
1
-0
/
+30
*
util/disk_cache: finish all queue jobs in destroy instead of killing them
Marek Olšák
2019-10-23
1
-0
/
+1
*
util: Workaround lack of flock on Solaris
Alan Coopersmith
2019-10-16
1
-0
/
+10
*
util/disk_cache: make use of the total job size limiting feature
Timothy Arceri
2019-09-19
1
-1
/
+1
*
util/u_queue: track job size and limit the size of queue growth
Timothy Arceri
2019-09-19
1
-1
/
+1
*
util/disk_cache: bump thread count assigned to disk cache queue
Timothy Arceri
2019-09-19
1
-3
/
+7
*
include: update GL headers from the registry
Marek Olšák
2019-06-21
1
-0
/
+1
*
util: Heap-allocate 256K zlib buffer
Jory Pratt
2019-06-19
1
-1
/
+8
*
util/disk_cache: close fd in the fallback path
Eric Engestrom
2019-03-28
1
-4
/
+3
*
util/u_queue: add UTIL_QUEUE_INIT_SET_FULL_THREAD_AFFINITY
Marek Olšák
2018-10-06
1
-1
/
+2
*
util: rename timestamp param in disk_cache_create()
Timothy Arceri
2018-10-03
1
-4
/
+4
*
Shorten u_queue names
Marek Olšák
2018-07-04
1
-1
/
+1
*
disk cache: move path creation back to constructor
Tapani Pälli
2018-02-09
1
-86
/
+76
*
disk cache: add callback functionality
Tapani Pälli
2018-02-07
1
-0
/
+48
*
disk cache: initialize cache path and index only when used
Tapani Pälli
2018-02-07
1
-49
/
+80
*
mesa: include compiler.h in disk_cache.c
Brian Paul
2018-01-17
1
-0
/
+1
*
util/disk_cache: Remove unneeded free() on always null string
Vadym Shovkoplias
2017-12-07
1
-1
/
+0
*
util: Fix disk_cache index calculation on big endian
Matt Turner
2017-11-25
1
-2
/
+2
*
disk_cache: Fix issue reading GLSL metadata
Jordan Justen
2017-10-31
1
-1
/
+1
*
disk_cache: remove unnecessary NULL-pointer guards
Nicolai Hähnle
2017-10-10
1
-4
/
+2
*
disk_cache: fix a memory leak
Nicolai Hähnle
2017-10-10
1
-0
/
+1
*
util/disk_cache: turn MESA_GLSL_CACHE_DISABLE into a boolean
Eric Engestrom
2017-09-12
1
-1
/
+2
*
disk_cache: make the thread queue resizable and low priority
Marek Olšák
2017-09-07
1
-6
/
+8
*
disk_cache: assert if a cache entries keys don't match mesa
Timothy Arceri
2017-08-28
1
-1
/
+3
*
util/disk_cache: write cache item metadata to disk
Timothy Arceri
2017-08-25
1
-1
/
+87
*
glsl: pass shader source keys to the disk cache
Timothy Arceri
2017-08-25
1
-3
/
+5
*
disk_cache: enable limited hash collision detection in release builds
Timothy Arceri
2017-08-25
1
-16
/
+10
*
util/disk_cache: rename mesa cache dir and introduce cache versioning
Timothy Arceri
2017-08-25
1
-12
/
+36
*
util/u_queue: add an option to set the minimum thread priority
Marek Olšák
2017-06-07
1
-1
/
+1
*
util/disk_cache: add new driver_flags param to cache keys
Timothy Arceri
2017-05-23
1
-1
/
+7
*
util/disk_cache: remove percentage based max cache limit
Timothy Arceri
2017-04-28
1
-6
/
+2
*
disk_cache: use block size rather than file size
Timothy Arceri
2017-04-27
1
-5
/
+11
*
disk_cache: reduce default cache size to 5% of filesystem
Timothy Arceri
2017-04-27
1
-2
/
+2
*
util/disk_cache: don't deadlock on premature EOF
Grazvydas Ignotas
2017-03-25
1
-17
/
+26
*
util/disk_cache: write cache entry keys to file header
Timothy Arceri
2017-03-24
1
-6
/
+44
*
util/disk_cache: hash pointer size and gpu name into cache keys
Grazvydas Ignotas
2017-03-24
1
-26
/
+15
*
util/disk_cache: hash timestamps into the cache keys
Grazvydas Ignotas
2017-03-24
1
-51
/
+26
*
util/disk_cache: use rand_xorshift128plus() to get our random int
Timothy Arceri
2017-03-23
1
-8
/
+10
*
util/disk_cache: add a write helper
Grazvydas Ignotas
2017-03-21
1
-14
/
+23
*
util/disk_cache: use a helper to compute cache keys
Grazvydas Ignotas
2017-03-21
1
-0
/
+7
*
util/disk_cache: check rename result
Grazvydas Ignotas
2017-03-20
1
-2
/
+6
*
util/disk_cache: delete .tmp if target exists
Grazvydas Ignotas
2017-03-20
1
-1
/
+3
*
util/disk_cache: fix stored_keys index
Grazvydas Ignotas
2017-03-20
1
-2
/
+2
*
util/disk_cache: pass predicate functions file stats directly (v4)
Alan Swanson
2017-03-18
1
-34
/
+21
*
util/disk_cache: do eviction before creating .tmp
Grazvydas Ignotas
2017-03-16
1
-10
/
+8
*
util/disk_cache: scale cache according to filesystem size
Alan Swanson
2017-03-15
1
-3
/
+8
[next]