summaryrefslogtreecommitdiff
path: root/include/freetype/internal/ftmemory.h
diff options
context:
space:
mode:
authorWerner Lemberg <wl@gnu.org>2016-09-06 12:29:18 +0200
committerWerner Lemberg <wl@gnu.org>2016-09-06 12:29:18 +0200
commit1656752ee5565ab166d1223953b4a4a57182c7a2 (patch)
treef67679099af7df0d8e1f6413e4d92ffcacc9ca6c /include/freetype/internal/ftmemory.h
parenta15133e6efc10f5342dedf5dfca9070c8bcc49ca (diff)
downloadfreetype2-1656752ee5565ab166d1223953b4a4a57182c7a2.tar.gz
Minor documentation improvements.
Diffstat (limited to 'include/freetype/internal/ftmemory.h')
-rw-r--r--include/freetype/internal/ftmemory.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/include/freetype/internal/ftmemory.h b/include/freetype/internal/ftmemory.h
index 8c06fc21a..fc33b2f50 100644
--- a/include/freetype/internal/ftmemory.h
+++ b/include/freetype/internal/ftmemory.h
@@ -108,10 +108,12 @@ extern "C++"
/*
* The allocation functions return a pointer, and the error code
- * is written to through the `p_error' parameter. See below for
- * for documentation.
+ * is written to through the `p_error' parameter.
*/
+ /* The `q' variants of the functions below (`q' for `quick') don't fill */
+ /* the allocated or reallocated memory with zero bytes. */
+
FT_BASE( FT_Pointer )
ft_mem_alloc( FT_Memory memory,
FT_Long size,
@@ -143,6 +145,9 @@ extern "C++"
const void* P );
+ /* The `Q' variants of the macros below (`Q' for `quick') don't fill */
+ /* the allocated or reallocated memory with zero bytes. */
+
#define FT_MEM_ALLOC( ptr, size ) \
FT_ASSIGNP_INNER( ptr, ft_mem_alloc( memory, \
(FT_Long)(size), \