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/imbuf/IMB_imbuf_types.h')
-rw-r--r--source/blender/imbuf/IMB_imbuf_types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/imbuf/IMB_imbuf_types.h b/source/blender/imbuf/IMB_imbuf_types.h
index 4bb3ea500fa..9697064b445 100644
--- a/source/blender/imbuf/IMB_imbuf_types.h
+++ b/source/blender/imbuf/IMB_imbuf_types.h
@@ -176,12 +176,12 @@ typedef enum eImBufFlags {
/** \} */
typedef struct ImBuf {
- struct ImBuf *next, *prev; /**< allow lists of ImBufs, for caches or flipbooks */
+ struct ImBuf *next, *prev; /** < allow lists of #ImBufs, for caches or flip-books. */
/* dimensions */
/** Width and Height of our image buffer.
* Should be 'unsigned int' since most formats use this.
- * but this is problematic with texture math in imagetexture.c
+ * but this is problematic with texture math in `imagetexture.c`
* avoid problems and use int. - campbell */
int x, y;