diff options
author | José Fonseca <[email protected]> | 2008-12-19 20:06:11 +0000 |
---|---|---|
committer | José Fonseca <[email protected]> | 2008-12-19 20:06:11 +0000 |
commit | b901e1f212c11afda05f2628a522d86802f87c52 (patch) | |
tree | 0661364dba7b668f8237472d3e1bf0fdb40f7e9d /src/gallium/auxiliary/util/Makefile | |
parent | 030a7a320cb2c49ff60f3948bd9c4976ca0b0b17 (diff) |
gallium: Simple and efficient cache.
Fixed size hash table. Collisions are handled by simply destroying the
previous entry.
It hasn't received much testing yet.
Diffstat (limited to 'src/gallium/auxiliary/util/Makefile')
-rw-r--r-- | src/gallium/auxiliary/util/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/util/Makefile b/src/gallium/auxiliary/util/Makefile index d3951e4e7d7..5c227c1eb54 100644 --- a/src/gallium/auxiliary/util/Makefile +++ b/src/gallium/auxiliary/util/Makefile @@ -6,10 +6,12 @@ LIBNAME = util C_SOURCES = \ p_debug.c \ u_blit.c \ + u_cache.c \ u_draw_quad.c \ u_gen_mipmap.c \ u_handle_table.c \ u_hash_table.c \ + u_hash.c \ u_math.c \ u_mm.c \ u_rect.c \ |