util: Make all 3 fetch_rgba functions occupy the same function slot.
[mesa.git] / src / util / slab.h
index e83f8ec1a0e5cd205bfc3b80dbdd4d6b34ef3768..5a25adaf7f4aafff47d420285fe38f1691f48c70 100644 (file)
@@ -84,11 +84,11 @@ struct slab_mempool {
    struct slab_child_pool child;
 };
 
-void slab_create(struct slab_mempool *pool,
+void slab_create(struct slab_mempool *mempool,
                  unsigned item_size,
                  unsigned num_items);
-void slab_destroy(struct slab_mempool *pool);
-void *slab_alloc_st(struct slab_mempool *pool);
-void slab_free_st(struct slab_mempool *pool, void *ptr);
+void slab_destroy(struct slab_mempool *mempool);
+void *slab_alloc_st(struct slab_mempool *mempool);
+void slab_free_st(struct slab_mempool *mempool, void *ptr);
 
 #endif