Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Letwory <nathan@letworyinteractive.com>2011-02-27 23:23:21 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2011-02-27 23:23:21 +0300
commit192ab99b5c972a84e8a802817a422f83b42b40de (patch)
tree5ead6b6753c6a07e021d78ea057f60dbc05d5056 /source/blender/imbuf/intern/cineon
parenta47ca06502461b36e6e86c57d472ba7184328698 (diff)
doxygen: blender/imbuf tagged.
Diffstat (limited to 'source/blender/imbuf/intern/cineon')
-rw-r--r--source/blender/imbuf/intern/cineon/cin_debug_stuff.h3
-rw-r--r--source/blender/imbuf/intern/cineon/cineon_dpx.c5
-rw-r--r--source/blender/imbuf/intern/cineon/cineonfile.h3
-rw-r--r--source/blender/imbuf/intern/cineon/cineonlib.c3
-rw-r--r--source/blender/imbuf/intern/cineon/cineonlib.h3
-rw-r--r--source/blender/imbuf/intern/cineon/dpxfile.h3
-rw-r--r--source/blender/imbuf/intern/cineon/dpxlib.c3
-rw-r--r--source/blender/imbuf/intern/cineon/dpxlib.h3
-rw-r--r--source/blender/imbuf/intern/cineon/logImageCore.c3
-rw-r--r--source/blender/imbuf/intern/cineon/logImageCore.h3
-rw-r--r--source/blender/imbuf/intern/cineon/logImageLib.c3
-rw-r--r--source/blender/imbuf/intern/cineon/logImageLib.h3
-rw-r--r--source/blender/imbuf/intern/cineon/logmemfile.c3
-rw-r--r--source/blender/imbuf/intern/cineon/logmemfile.h3
14 files changed, 44 insertions, 0 deletions
diff --git a/source/blender/imbuf/intern/cineon/cin_debug_stuff.h b/source/blender/imbuf/intern/cineon/cin_debug_stuff.h
index 5d7daa19c61..a97499fb1ae 100644
--- a/source/blender/imbuf/intern/cineon/cin_debug_stuff.h
+++ b/source/blender/imbuf/intern/cineon/cin_debug_stuff.h
@@ -1 +1,4 @@
+/** \file blender/imbuf/intern/cineon/cin_debug_stuff.h
+ * \ingroup imbcineon
+ */
#define d_printf printf
diff --git a/source/blender/imbuf/intern/cineon/cineon_dpx.c b/source/blender/imbuf/intern/cineon/cineon_dpx.c
index 9882a9ea5ae..504817b263f 100644
--- a/source/blender/imbuf/intern/cineon/cineon_dpx.c
+++ b/source/blender/imbuf/intern/cineon/cineon_dpx.c
@@ -29,6 +29,11 @@
* I hearby donate this code and all rights to the Blender Foundation.
* $Id$
*/
+
+/** \file blender/imbuf/intern/cineon/cineon_dpx.c
+ * \ingroup imbcineon
+ */
+
#include <stdio.h>
#include <string.h> /*for memcpy*/
diff --git a/source/blender/imbuf/intern/cineon/cineonfile.h b/source/blender/imbuf/intern/cineon/cineonfile.h
index 6703630179c..31aa56f560c 100644
--- a/source/blender/imbuf/intern/cineon/cineonfile.h
+++ b/source/blender/imbuf/intern/cineon/cineonfile.h
@@ -1,3 +1,6 @@
+/** \file blender/imbuf/intern/cineon/cineonfile.h
+ * \ingroup imbcineon
+ */
/*
* Cineon image file format library definitions.
* Cineon file format structures.
diff --git a/source/blender/imbuf/intern/cineon/cineonlib.c b/source/blender/imbuf/intern/cineon/cineonlib.c
index a2a0fae526d..78da556210b 100644
--- a/source/blender/imbuf/intern/cineon/cineonlib.c
+++ b/source/blender/imbuf/intern/cineon/cineonlib.c
@@ -1,3 +1,6 @@
+/** \file blender/imbuf/intern/cineon/cineonlib.c
+ * \ingroup imbcineon
+ */
/*
* Cineon image file format library routines.
*
diff --git a/source/blender/imbuf/intern/cineon/cineonlib.h b/source/blender/imbuf/intern/cineon/cineonlib.h
index edb96924807..c24503e2ada 100644
--- a/source/blender/imbuf/intern/cineon/cineonlib.h
+++ b/source/blender/imbuf/intern/cineon/cineonlib.h
@@ -1,3 +1,6 @@
+/** \file blender/imbuf/intern/cineon/cineonlib.h
+ * \ingroup imbcineon
+ */
/*
* Cineon image file format library definitions.
* Also handles DPX files (almost)
diff --git a/source/blender/imbuf/intern/cineon/dpxfile.h b/source/blender/imbuf/intern/cineon/dpxfile.h
index 947c9bfce6e..abb11ec2e8c 100644
--- a/source/blender/imbuf/intern/cineon/dpxfile.h
+++ b/source/blender/imbuf/intern/cineon/dpxfile.h
@@ -1,3 +1,6 @@
+/** \file blender/imbuf/intern/cineon/dpxfile.h
+ * \ingroup imbcineon
+ */
/*
* Cineon image file format library definitions.
* Dpx file format structures.
diff --git a/source/blender/imbuf/intern/cineon/dpxlib.c b/source/blender/imbuf/intern/cineon/dpxlib.c
index ade69b4d7c0..a63a2ea1dab 100644
--- a/source/blender/imbuf/intern/cineon/dpxlib.c
+++ b/source/blender/imbuf/intern/cineon/dpxlib.c
@@ -1,3 +1,6 @@
+/** \file blender/imbuf/intern/cineon/dpxlib.c
+ * \ingroup imbcineon
+ */
/*
* Dpx image file format library routines.
*
diff --git a/source/blender/imbuf/intern/cineon/dpxlib.h b/source/blender/imbuf/intern/cineon/dpxlib.h
index 243bffa6227..1607de311c3 100644
--- a/source/blender/imbuf/intern/cineon/dpxlib.h
+++ b/source/blender/imbuf/intern/cineon/dpxlib.h
@@ -1,3 +1,6 @@
+/** \file blender/imbuf/intern/cineon/dpxlib.h
+ * \ingroup imbcineon
+ */
/*
* DPX image file format library definitions.
*
diff --git a/source/blender/imbuf/intern/cineon/logImageCore.c b/source/blender/imbuf/intern/cineon/logImageCore.c
index a340a81d2eb..e1f1500cb83 100644
--- a/source/blender/imbuf/intern/cineon/logImageCore.c
+++ b/source/blender/imbuf/intern/cineon/logImageCore.c
@@ -1,3 +1,6 @@
+/** \file blender/imbuf/intern/cineon/logImageCore.c
+ * \ingroup imbcineon
+ */
/*
* Cineon image file format library routines.
*
diff --git a/source/blender/imbuf/intern/cineon/logImageCore.h b/source/blender/imbuf/intern/cineon/logImageCore.h
index 0ff8e086622..f05c19c4f47 100644
--- a/source/blender/imbuf/intern/cineon/logImageCore.h
+++ b/source/blender/imbuf/intern/cineon/logImageCore.h
@@ -1,3 +1,6 @@
+/** \file blender/imbuf/intern/cineon/logImageCore.h
+ * \ingroup imbcineon
+ */
/*
* Cineon image file format library definitions.
* Cineon and DPX common structures.
diff --git a/source/blender/imbuf/intern/cineon/logImageLib.c b/source/blender/imbuf/intern/cineon/logImageLib.c
index 195dd65b08d..6c330fb3dae 100644
--- a/source/blender/imbuf/intern/cineon/logImageLib.c
+++ b/source/blender/imbuf/intern/cineon/logImageLib.c
@@ -1,3 +1,6 @@
+/** \file blender/imbuf/intern/cineon/logImageLib.c
+ * \ingroup imbcineon
+ */
/*
* Cineon and DPX image file format library routines.
*
diff --git a/source/blender/imbuf/intern/cineon/logImageLib.h b/source/blender/imbuf/intern/cineon/logImageLib.h
index 8aaf5ff63f4..9f6d3ad2adf 100644
--- a/source/blender/imbuf/intern/cineon/logImageLib.h
+++ b/source/blender/imbuf/intern/cineon/logImageLib.h
@@ -1,3 +1,6 @@
+/** \file blender/imbuf/intern/cineon/logImageLib.h
+ * \ingroup imbcineon
+ */
/*
* Common library definitions for Cineon and DPX image files.
*
diff --git a/source/blender/imbuf/intern/cineon/logmemfile.c b/source/blender/imbuf/intern/cineon/logmemfile.c
index 20eabf6dfc3..6347eb5fdf9 100644
--- a/source/blender/imbuf/intern/cineon/logmemfile.c
+++ b/source/blender/imbuf/intern/cineon/logmemfile.c
@@ -1,3 +1,6 @@
+/** \file blender/imbuf/intern/cineon/logmemfile.c
+ * \ingroup imbcineon
+ */
/*
* Cineon image file format library routines.
*
diff --git a/source/blender/imbuf/intern/cineon/logmemfile.h b/source/blender/imbuf/intern/cineon/logmemfile.h
index 213b84f8f1d..36f950232ac 100644
--- a/source/blender/imbuf/intern/cineon/logmemfile.h
+++ b/source/blender/imbuf/intern/cineon/logmemfile.h
@@ -1,3 +1,6 @@
+/** \file blender/imbuf/intern/cineon/logmemfile.h
+ * \ingroup imbcineon
+ */
/*
* Cineon image file format library routines.
*