summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/util/Makefile
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2008-12-19 20:06:11 +0000
committerJosé Fonseca <jfonseca@vmware.com>2008-12-19 20:06:11 +0000
commitb901e1f212c11afda05f2628a522d86802f87c52 (patch)
tree0661364dba7b668f8237472d3e1bf0fdb40f7e9d /src/gallium/auxiliary/util/Makefile
parent030a7a320cb2c49ff60f3948bd9c4976ca0b0b17 (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/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/util/Makefile b/src/gallium/auxiliary/util/Makefile
index d3951e4e7d..5c227c1eb5 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 \