aboutsummaryrefslogtreecommitdiff
path: root/src/imgbuf.cc
diff options
context:
space:
mode:
authorRodrigo Arias Mallo <rodarima@gmail.com>2024-03-09 17:35:19 +0100
committerrodarima <rodarima@gmail.com>2024-03-09 18:43:51 +0100
commit4c56214b8c2e130d3709bdca2513aef20b7b0fab (patch)
treeb8cd0c6dafb5850ba116221f6f39a62e84983aa5 /src/imgbuf.cc
parentbde09c45adf0daf252fafbaf87683d3ed7eaab07 (diff)
Use Doxygen comments for C files
Diffstat (limited to 'src/imgbuf.cc')
-rw-r--r--src/imgbuf.cc12
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)