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:
Diffstat (limited to 'source/blender/blenfont/intern')
-rw-r--r--source/blender/blenfont/intern/blf.c3
-rw-r--r--source/blender/blenfont/intern/blf_dir.c3
-rw-r--r--source/blender/blenfont/intern/blf_font.c3
-rw-r--r--source/blender/blenfont/intern/blf_font_i18n.c3
-rw-r--r--source/blender/blenfont/intern/blf_font_win32_compat.c3
-rw-r--r--source/blender/blenfont/intern/blf_glyph.c3
-rw-r--r--source/blender/blenfont/intern/blf_internal.h3
-rw-r--r--source/blender/blenfont/intern/blf_internal_types.h3
-rw-r--r--source/blender/blenfont/intern/blf_thumbs.c3
-rw-r--r--source/blender/blenfont/intern/blf_util.c3
10 files changed, 20 insertions, 10 deletions
diff --git a/source/blender/blenfont/intern/blf.c b/source/blender/blenfont/intern/blf.c
index 27437c74f74..4f6344ee506 100644
--- a/source/blender/blenfont/intern/blf.c
+++ b/source/blender/blenfont/intern/blf.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup blf
+/** \file
+ * \ingroup blf
*
* Main BlenFont (BLF) API, public functions for font handling.
*
diff --git a/source/blender/blenfont/intern/blf_dir.c b/source/blender/blenfont/intern/blf_dir.c
index 17935686692..34d0fe5bba3 100644
--- a/source/blender/blenfont/intern/blf_dir.c
+++ b/source/blender/blenfont/intern/blf_dir.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup blf
+/** \file
+ * \ingroup blf
*
* Manage search paths for font files.
*/
diff --git a/source/blender/blenfont/intern/blf_font.c b/source/blender/blenfont/intern/blf_font.c
index eac1ade72db..d26c449dce2 100644
--- a/source/blender/blenfont/intern/blf_font.c
+++ b/source/blender/blenfont/intern/blf_font.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup blf
+/** \file
+ * \ingroup blf
*
* Deals with drawing text to OpenGL or bitmap buffers.
*
diff --git a/source/blender/blenfont/intern/blf_font_i18n.c b/source/blender/blenfont/intern/blf_font_i18n.c
index d214cbf95ab..2a69d714dc6 100644
--- a/source/blender/blenfont/intern/blf_font_i18n.c
+++ b/source/blender/blenfont/intern/blf_font_i18n.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup blf
+/** \file
+ * \ingroup blf
*
* API for accessing font files.
*/
diff --git a/source/blender/blenfont/intern/blf_font_win32_compat.c b/source/blender/blenfont/intern/blf_font_win32_compat.c
index 2edbd44cdbf..70a5e3a9ce3 100644
--- a/source/blender/blenfont/intern/blf_font_win32_compat.c
+++ b/source/blender/blenfont/intern/blf_font_win32_compat.c
@@ -14,7 +14,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file \ingroup blf
+/** \file
+ * \ingroup blf
*
* Workaround for win32 which needs to use BLI_fopen to access files.
*
diff --git a/source/blender/blenfont/intern/blf_glyph.c b/source/blender/blenfont/intern/blf_glyph.c
index 1b23def3bc8..27187f2e84d 100644
--- a/source/blender/blenfont/intern/blf_glyph.c
+++ b/source/blender/blenfont/intern/blf_glyph.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup blf
+/** \file
+ * \ingroup blf
*
* Glyph rendering, texturing and caching. Wraps Freetype and OpenGL functions.
*/
diff --git a/source/blender/blenfont/intern/blf_internal.h b/source/blender/blenfont/intern/blf_internal.h
index 4a935a883b2..f7eec01470a 100644
--- a/source/blender/blenfont/intern/blf_internal.h
+++ b/source/blender/blenfont/intern/blf_internal.h
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup blf
+/** \file
+ * \ingroup blf
*/
diff --git a/source/blender/blenfont/intern/blf_internal_types.h b/source/blender/blenfont/intern/blf_internal_types.h
index 966a6372b1a..013127b6a47 100644
--- a/source/blender/blenfont/intern/blf_internal_types.h
+++ b/source/blender/blenfont/intern/blf_internal_types.h
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup blf
+/** \file
+ * \ingroup blf
*/
diff --git a/source/blender/blenfont/intern/blf_thumbs.c b/source/blender/blenfont/intern/blf_thumbs.c
index d3856d60de5..bbab5110e0e 100644
--- a/source/blender/blenfont/intern/blf_thumbs.c
+++ b/source/blender/blenfont/intern/blf_thumbs.c
@@ -14,7 +14,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file \ingroup blf
+/** \file
+ * \ingroup blf
*
* Utility function to generate font preview images.
*
diff --git a/source/blender/blenfont/intern/blf_util.c b/source/blender/blenfont/intern/blf_util.c
index ae8bb08f23e..d479861b897 100644
--- a/source/blender/blenfont/intern/blf_util.c
+++ b/source/blender/blenfont/intern/blf_util.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup blf
+/** \file
+ * \ingroup blf
*
* Internal utility API for BLF.
*/