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
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-12-20 02:45:45 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-12-20 02:46:17 +0300
commit334ddce17c3e9c0ae672e942e89f0c9a829455d1 (patch)
treeb619cb7e46cb50548521811208bf5453c186c568 /source
parent9a9f39e4661163391bb8e3eb782438e425abe684 (diff)
Cleanup: spelling
Diffstat (limited to 'source')
-rw-r--r--source/blender/blenkernel/intern/fluid.c4
-rw-r--r--source/blender/blenloader/intern/readfile.c6
-rw-r--r--source/blender/editors/render/render_opengl.c6
3 files changed, 10 insertions, 6 deletions
diff --git a/source/blender/blenkernel/intern/fluid.c b/source/blender/blenkernel/intern/fluid.c
index a22e552dc36..96be64dea75 100644
--- a/source/blender/blenkernel/intern/fluid.c
+++ b/source/blender/blenkernel/intern/fluid.c
@@ -4334,8 +4334,8 @@ void BKE_fluid_flow_behavior_set(Object *UNUSED(object), FluidFlowSettings *sett
void BKE_fluid_flow_type_set(Object *object, FluidFlowSettings *settings, int type)
{
- /* By default, liquid flow objects should behave like their geometry (geomtery behavior),
- * gas flow objects should continously produce smoke (inflow behavior). */
+ /* By default, liquid flow objects should behave like their geometry (geometry behavior),
+ * gas flow objects should continuously produce smoke (inflow behavior). */
if (type == FLUID_FLOW_TYPE_LIQUID) {
BKE_fluid_flow_behavior_set(object, settings, FLUID_FLOW_BEHAVIOR_GEOMETRY);
}
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index bdebe2b9f4d..5b73a7521e2 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -5502,8 +5502,10 @@ static void modifier_ensure_type(FluidModifierData *fluid_modifier_data, int typ
BKE_fluid_modifier_create_type_data(fluid_modifier_data);
}
-/* NOTE: The old_modifier_data is NOT linked. This means that in ordet to access subdata
- * pointers newdataadr is to be used. */
+/**
+ * \note The old_modifier_data is NOT linked.
+ * This means that in order to access sub-data pointers #newdataadr is to be used.
+ */
static ModifierData *modifier_replace_with_fluid(FileData *fd,
Object *object,
ListBase *modifiers,
diff --git a/source/blender/editors/render/render_opengl.c b/source/blender/editors/render/render_opengl.c
index 9a1eef348f9..3a77e1e1565 100644
--- a/source/blender/editors/render/render_opengl.c
+++ b/source/blender/editors/render/render_opengl.c
@@ -561,8 +561,10 @@ static void gather_frames_to_render_for_adt(OGLRender *oglrender,
}
}
-/* Collect the frame numbers for which selected objects have keys in the animation data.
- * The frames ares tored in oglrender->render_frames. */
+/**
+ * Collect the frame numbers for which selected objects have keys in the animation data.
+ * The frames ares stored in #OGLRender.render_frames.
+ */
static void gather_frames_to_render(bContext *C, OGLRender *oglrender)
{
Scene *scene = CTX_data_scene(C);