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:
authorCampbell Barton <ideasman42@gmail.com>2019-01-07 14:19:13 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-01-07 16:43:00 +0300
commit5a43406e1bad973a8cb32702b4fdb588068a6dcd (patch)
treeb47ac75f429b586950dab5300669c373023efab8 /source/blender/makesdna/DNA_cachefile_types.h
parent0215caeac2ad013fa03e2799049f5358d951ebfa (diff)
Cleanup: move DNA comments before struct members
Needed for clang-format in some cases, see: T53211
Diffstat (limited to 'source/blender/makesdna/DNA_cachefile_types.h')
-rw-r--r--source/blender/makesdna/DNA_cachefile_types.h15
1 files changed, 9 insertions, 6 deletions
diff --git a/source/blender/makesdna/DNA_cachefile_types.h b/source/blender/makesdna/DNA_cachefile_types.h
index c0e662d8a48..8ff1d521f7d 100644
--- a/source/blender/makesdna/DNA_cachefile_types.h
+++ b/source/blender/makesdna/DNA_cachefile_types.h
@@ -62,11 +62,11 @@ typedef struct CacheFile {
struct AbcArchiveHandle *handle;
void *handle_mutex;
- /* Paths of the objects inside of the Alembic archive referenced by this
- * CacheFile. */
+ /** Paths of the objects inside of the Alembic archive referenced by this CacheFile. */
ListBase object_paths;
- char filepath[1024]; /* 1024 = FILE_MAX */
+ /** 1024 = FILE_MAX. */
+ char filepath[1024];
char is_sequence;
char forward_axis;
@@ -74,10 +74,13 @@ typedef struct CacheFile {
char override_frame;
float scale;
- float frame; /* The frame/time to lookup in the cache file. */
- float frame_offset; /* The frame offset to subtract. */
+ /** The frame/time to lookup in the cache file. */
+ float frame;
+ /** The frame offset to subtract. */
+ float frame_offset;
- short flag; /* Animation flag. */
+ /** Animation flag. */
+ short flag;
short draw_flag;
char padding[4];