From f97a4bd25458fdc8da1a97f7b68a305c8ab35ff4 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 7 Aug 2013 03:36:05 +0000 Subject: code cleanup: more zero as NULL pointers. --- source/blender/blenfont/BLF_api.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/blenfont/BLF_api.h') diff --git a/source/blender/blenfont/BLF_api.h b/source/blender/blenfont/BLF_api.h index fd8bd196717..8f77f8c984d 100644 --- a/source/blender/blenfont/BLF_api.h +++ b/source/blender/blenfont/BLF_api.h @@ -149,11 +149,11 @@ void BLF_shadow_offset(int fontid, int x, int y); /* Set the buffer, size and number of channels to draw, one thing to take care is call * this function with NULL pointer when we finish, for example: * - * BLF_buffer(my_fbuf, my_cbuf, 100, 100, 4, TRUE); + * BLF_buffer(my_fbuf, my_cbuf, 100, 100, 4, TRUE, NULL); * * ... set color, position and draw ... * - * BLF_buffer(NULL, NULL, 0, 0, 0, FALSE); + * BLF_buffer(NULL, NULL, NULL, 0, 0, FALSE, NULL); */ void BLF_buffer(int fontid, float *fbuf, unsigned char *cbuf, int w, int h, int nch, struct ColorManagedDisplay *display); -- cgit v1.2.3