mesa: remove support for GL_APPLE_client_storage extension
[mesa.git] / src / glsl / ralloc.h
index 57e8c7a138a177e0dc2f6234941a035b98842bea..d5338152f10f6a50cb504f974c5a5fde2ac05602 100644 (file)
  * ralloc_free on any particular object to free it and all of its
  * children.
  *
- * This is currently a wrapper around talloc, but that will change.
+ * The conceptual working of ralloc was directly inspired by Andrew
+ * Tridgell's talloc, but ralloc is an independent implementation
+ * released under the MIT license and tuned for Mesa.
+ *
+ * The talloc implementation is available under the GNU Lesser
+ * General Public License (GNU LGPL), version 3 or later. It is
+ * more sophisticated than ralloc in that it includes reference
+ * counting and debugging features. See: http://talloc.samba.org/
  */
 
 #ifndef RALLOC_H