summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/r300/r300_context.c
diff options
context:
space:
mode:
authorCorbin Simpson <MostAwesomeDude@gmail.com>2009-10-17 20:05:23 -0700
committerCorbin Simpson <MostAwesomeDude@gmail.com>2009-10-17 20:05:23 -0700
commitce9ae4a483e7c85a9046a87005232aa09de782aa (patch)
tree228c867d5cbe7258a32f4868837380cbc96ea8bc /src/gallium/drivers/r300/r300_context.c
parent4a98d19d1b93651acd8f7f428151667e411ad718 (diff)
r300g: Fix u_hash_table rename.
Diffstat (limited to 'src/gallium/drivers/r300/r300_context.c')
-rw-r--r--src/gallium/drivers/r300/r300_context.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/drivers/r300/r300_context.c b/src/gallium/drivers/r300/r300_context.c
index a1156d2de6..0518685200 100644
--- a/src/gallium/drivers/r300/r300_context.c
+++ b/src/gallium/drivers/r300/r300_context.c
@@ -102,9 +102,9 @@ static void r300_destroy_context(struct pipe_context* context)
struct r300_context* r300 = r300_context(context);
struct r300_query* query, * temp;
- u_hash_table_foreach(r300->shader_hash_table, r300_clear_hash_table,
+ util_hash_table_foreach(r300->shader_hash_table, r300_clear_hash_table,
NULL);
- u_hash_table_destroy(r300->shader_hash_table);
+ util_hash_table_destroy(r300->shader_hash_table);
draw_destroy(r300->draw);
@@ -180,7 +180,7 @@ struct pipe_context* r300_create_context(struct pipe_screen* screen,
r300->context.is_texture_referenced = r300_is_texture_referenced;
r300->context.is_buffer_referenced = r300_is_buffer_referenced;
- r300->shader_hash_table = u_hash_table_create(r300_shader_key_hash,
+ r300->shader_hash_table = util_hash_table_create(r300_shader_key_hash,
r300_shader_key_compare);
r300->blend_color_state = CALLOC_STRUCT(r300_blend_color_state);