gallium/hash_table: turn it into a wrapper around util/hash_table
[mesa.git] / src / gallium / state_trackers / nine / device9.h
index 167a830d8242a3e60fcbeef72d86979d0664986d..f24d79295ad08d78c5f783c5eb09898ba9738a37 100644 (file)
@@ -32,7 +32,7 @@
 #include "nine_state.h"
 
 struct gen_mipmap_state;
-struct util_hash_table;
+struct hash_table;
 struct pipe_screen;
 struct pipe_context;
 struct cso_context;
@@ -102,8 +102,8 @@ struct NineDevice9
     struct gen_mipmap_state *gen_mipmap;
 
     struct {
-        struct util_hash_table *ht_vs;
-        struct util_hash_table *ht_ps;
+        struct hash_table *ht_vs;
+        struct hash_table *ht_ps;
         struct NineVertexShader9 *vs;
         struct NinePixelShader9 *ps;
         unsigned num_vs;
@@ -111,7 +111,7 @@ struct NineDevice9
         float *vs_const;
         float *ps_const;
 
-        struct util_hash_table *ht_fvf;
+        struct hash_table *ht_fvf;
     } ff;
 
     struct {