[cairo-commit] cairo ChangeLog,1.696,1.697

Carl Worth commit at pdx.freedesktop.org
Wed Jun 29 15:02:13 PDT 2005


Committed by: cworth

Update of /cvs/cairo/cairo
In directory gabe:/tmp/cvs-serv17815

Modified Files:
	ChangeLog 
Log Message:

        * src/cairo-hash-private.h:
        * src/cairo-hash.c: (_cairo_hash_table_create), (_destroy_entry),
        (_cairo_hash_table_destroy), (_cairo_hash_table_lookup_internal),
        (_cairo_hash_table_resize), (_cairo_hash_table_lookup),
        (_cairo_hash_table_insert), (_cairo_hash_table_remove),
        (_cairo_hash_table_foreach): Rewrite hash table to use a single
        cairo_hash_entry_t* rather than void *key and void *value. This is
        slightly more painful to use, but lends itself to a more
        memory-efficient implementation. Add documentation.


Index: ChangeLog
===================================================================
RCS file: /cvs/cairo/cairo/ChangeLog,v
retrieving revision 1.696
retrieving revision 1.697
diff -u -d -r1.696 -r1.697
--- ChangeLog	29 Jun 2005 14:04:34 -0000	1.696
+++ ChangeLog	29 Jun 2005 22:02:10 -0000	1.697
@@ -1,6 +1,18 @@
 2005-06-29  Carl Worth  <cworth at cworth.org>
 
 	* src/cairo-hash-private.h:
+	* src/cairo-hash.c: (_cairo_hash_table_create), (_destroy_entry),
+	(_cairo_hash_table_destroy), (_cairo_hash_table_lookup_internal),
+	(_cairo_hash_table_resize), (_cairo_hash_table_lookup),
+	(_cairo_hash_table_insert), (_cairo_hash_table_remove),
+	(_cairo_hash_table_foreach): Rewrite hash table to use a single
+	cairo_hash_entry_t* rather than void *key and void *value. This is
+	slightly more painful to use, but lends itself to a more
+	memory-efficient implementation. Add documentation.
+
+2005-06-29  Carl Worth  <cworth at cworth.org>
+
+	* src/cairo-hash-private.h:
 	* src/cairo-hash.c: (_cairo_hash_table_create),
 	(_cairo_hash_table_destroy_entry), (_cairo_hash_table_destroy),
 	(_cairo_hash_table_lookup_internal), (_cairo_hash_table_resize),




More information about the cairo-commit mailing list