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:
authorHans Goudey <h.goudey@me.com>2020-10-14 23:04:49 +0300
committerHans Goudey <h.goudey@me.com>2020-10-14 23:04:49 +0300
commita509e79a4c772a48dee0e2bf56e2b4df97b170f0 (patch)
tree8932f9fd25294328fa9169981ff794aec3c787d9 /source/creator/creator.c
parent11a8a6d0e6b5bc1d60b5306c6efd8daf9e038327 (diff)
Cleanup: Comment formatting, grammar
Diffstat (limited to 'source/creator/creator.c')
-rw-r--r--source/creator/creator.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/creator/creator.c b/source/creator/creator.c
index 80cae248c67..65610ea9b70 100644
--- a/source/creator/creator.c
+++ b/source/creator/creator.c
@@ -47,7 +47,7 @@
#include "BLI_threads.h"
#include "BLI_utildefines.h"
-/* mostly init functions */
+/* Mostly init functions. */
#include "BKE_appdir.h"
#include "BKE_blender.h"
#include "BKE_brush.h"
@@ -69,7 +69,7 @@
#include "DEG_depsgraph.h"
-#include "IMB_imbuf.h" /* for IMB_init */
+#include "IMB_imbuf.h" /* For #IMB_init. */
#include "RE_engine.h"
#include "RE_render_ext.h"
@@ -107,7 +107,7 @@
# include "sdlew.h"
#endif
-#include "creator_intern.h" /* own include */
+#include "creator_intern.h" /* Own include. */
/* Local Function prototypes. */
@@ -244,7 +244,7 @@ int main(int argc,
/* --- end declarations --- */
- /* ensure we free data on early-exit */
+ /* Ensure we free data on early-exit. */
struct CreatorAtExitData app_init_data = {NULL};
BKE_blender_atexit_register(callback_main_atexit, &app_init_data);
@@ -320,7 +320,7 @@ int main(int argc,
sdlewInit();
#endif
- /* Initialize logging */
+ /* Initialize logging. */
CLG_init();
CLG_fatal_fn_set(callback_clg_fatal);
@@ -366,7 +366,7 @@ int main(int argc,
fpsetmask(0);
#endif
- /* initialize path to executable */
+ /* Initialize path to executable. */
BKE_appdir_program_path_init(argv[0]);
BLI_threadapi_init();