diff options
Diffstat (limited to 'include/painter/canvas.h')
-rw-r--r-- | include/painter/canvas.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/painter/canvas.h b/include/painter/canvas.h index ac278ff..51a7dc9 100644 --- a/include/painter/canvas.h +++ b/include/painter/canvas.h | |||
@@ -26,7 +26,7 @@ typedef struct { | |||
26 | * height - the height in pixels | 26 | * height - the height in pixels |
27 | * | 27 | * |
28 | * Returns: | 28 | * Returns: |
29 | * The initialised canvas | 29 | * The initialised canvas, dynamically allocated |
30 | */ | 30 | */ |
31 | Canvas *canvas_create(IntVector width, IntVector height); | 31 | Canvas *canvas_create(IntVector width, IntVector height); |
32 | 32 | ||
@@ -38,7 +38,7 @@ Canvas *canvas_create(IntVector width, IntVector height); | |||
38 | * *fpath - path to the base image file | 38 | * *fpath - path to the base image file |
39 | * | 39 | * |
40 | * Returns: | 40 | * Returns: |
41 | * The initialised canvas | 41 | * The initialised canvas, dynamically allocated |
42 | */ | 42 | */ |
43 | Canvas *canvas_create_from_image(const char *fpath); | 43 | Canvas *canvas_create_from_image(const char *fpath); |
44 | 44 | ||