diff options
Diffstat (limited to 'src/imgbuf.cc')
-rw-r--r-- | src/imgbuf.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/imgbuf.cc b/src/imgbuf.cc index 48e6bde5..6b701d6b 100644 --- a/src/imgbuf.cc +++ b/src/imgbuf.cc @@ -70,7 +70,7 @@ static uchar_t *Imgbuf_rgb_line(const uchar_t *buf, // Wrappers for Imgbuf ------------------------------------------------------- -/* +/** * Increment reference count for an Imgbuf */ void a_Imgbuf_ref(void *v_imgbuf) @@ -78,7 +78,7 @@ void a_Imgbuf_ref(void *v_imgbuf) ((Imgbuf*)v_imgbuf)->ref(); } -/* +/** * Decrement reference count for an Imgbuf */ void a_Imgbuf_unref(void *v_imgbuf) @@ -87,7 +87,7 @@ void a_Imgbuf_unref(void *v_imgbuf) ((Imgbuf*)v_imgbuf)->unref(); } -/* +/** * Create a new Imgbuf */ void *a_Imgbuf_new(void *layout, int img_type, uint_t width, uint_t height, @@ -107,7 +107,7 @@ void *a_Imgbuf_new(void *layout, int img_type, uint_t width, uint_t height, gamma); } -/* +/** * Last reference for this Imgbuf? */ int a_Imgbuf_last_reference(void *v_imgbuf) @@ -115,7 +115,7 @@ int a_Imgbuf_last_reference(void *v_imgbuf) return ((Imgbuf*)v_imgbuf)->lastReference () ? 1 : 0; } -/* +/** * Update the root buffer of an imgbuf. */ void a_Imgbuf_update(void *v_imgbuf, const uchar_t *buf, DilloImgType type, @@ -129,7 +129,7 @@ void a_Imgbuf_update(void *v_imgbuf, const uchar_t *buf, DilloImgType type, ((Imgbuf*)v_imgbuf)->copyRow(y, (byte *)newbuf); } -/* +/** * Reset for a new scan from a multiple-scan image. */ void a_Imgbuf_new_scan(void *v_imgbuf) |