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-04-17 07:17:24 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-04-17 07:21:24 +0300
commite12c08e8d170b7ca40f204a5b0423c23a9fbc2c1 (patch)
tree8cf3453d12edb177a218ef8009357518ec6cab6a /source/blender/makesdna/DNA_fileglobal_types.h
parentb3dabc200a4b0399ec6b81f2ff2730d07b44fcaa (diff)
ClangFormat: apply to source, most of intern
Apply clang format as proposed in T53211. For details on usage and instructions for migrating branches without conflicts, see: https://wiki.blender.org/wiki/Tools/ClangFormat
Diffstat (limited to 'source/blender/makesdna/DNA_fileglobal_types.h')
-rw-r--r--source/blender/makesdna/DNA_fileglobal_types.h40
1 files changed, 19 insertions, 21 deletions
diff --git a/source/blender/makesdna/DNA_fileglobal_types.h b/source/blender/makesdna/DNA_fileglobal_types.h
index 6daa0f5aeb3..66f185282a9 100644
--- a/source/blender/makesdna/DNA_fileglobal_types.h
+++ b/source/blender/makesdna/DNA_fileglobal_types.h
@@ -29,32 +29,30 @@
* the moment of saving, and the file-specific settings.
*/
typedef struct FileGlobal {
- /** Needs to be here, for human fileformat recognition (keep first!). */
- char subvstr[4];
-
- short subversion;
- short minversion, minsubversion;
- char _pad[6];
- struct bScreen *curscreen;
- struct Scene *curscene;
- struct ViewLayer *cur_view_layer;
- void *_pad1;
-
- int fileflags;
- int globalf;
- /** Commit timestamp from buildinfo. */
- uint64_t build_commit_timestamp;
- /** Hash from buildinfo. */
- char build_hash[16];
- /** File path where this was saved, for recover (1024 = FILE_MAX). */
- char filename[1024];
+ /** Needs to be here, for human fileformat recognition (keep first!). */
+ char subvstr[4];
+
+ short subversion;
+ short minversion, minsubversion;
+ char _pad[6];
+ struct bScreen *curscreen;
+ struct Scene *curscene;
+ struct ViewLayer *cur_view_layer;
+ void *_pad1;
+
+ int fileflags;
+ int globalf;
+ /** Commit timestamp from buildinfo. */
+ uint64_t build_commit_timestamp;
+ /** Hash from buildinfo. */
+ char build_hash[16];
+ /** File path where this was saved, for recover (1024 = FILE_MAX). */
+ char filename[1024];
} FileGlobal;
-
/* minversion: in file, the oldest past blender version you can use compliant */
/* example: if in 2.43 the meshes lose mesh data, minversion is 2.43 then too */
/* or: in 2.42, subversion 1, same as above, minversion then is 2.42, min subversion 1 */
/* (defines for version are in the BKE_blender_version.h file, for historic reasons) */
-
#endif