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>2021-02-16 13:15:45 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-02-16 13:15:45 +0300
commitc03650073e60194500e13dc996168c4930970f5b (patch)
treec9cbaa7533bf1e7712aaa12594be030a23295477 /source/blender/editors/space_view3d
parenta059f072741d671ad882c44e93f6f62bb38f27d8 (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/editors/space_view3d')
-rw-r--r--source/blender/editors/space_view3d/view3d_draw.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/space_view3d/view3d_draw.c b/source/blender/editors/space_view3d/view3d_draw.c
index ddb57a916af..12fb96c0737 100644
--- a/source/blender/editors/space_view3d/view3d_draw.c
+++ b/source/blender/editors/space_view3d/view3d_draw.c
@@ -2156,7 +2156,7 @@ bool ED_view3d_clipping_test(const RegionView3D *rv3d, const float co[3], const
/** \} */
/* -------------------------------------------------------------------- */
-/** \name Backdraw for Selection
+/** \name Back-Draw for Selection
* \{ */
/**
@@ -2200,7 +2200,7 @@ static void validate_object_select_id(struct Depsgraph *depsgraph,
}
/* TODO: Create a flag in `DRW_manager` because the drawing is no longer
- * made on the backbuffer in this case. */
+ * made on the back-buffer in this case. */
v3d->flag &= ~V3D_INVALID_BACKBUF;
}
@@ -2229,7 +2229,7 @@ static void view3d_opengl_read_Z_pixels(GPUViewport *viewport, rcti *rect, void
void ED_view3d_select_id_validate(ViewContext *vc)
{
/* TODO: Create a flag in `DRW_manager` because the drawing is no longer
- * made on the backbuffer in this case. */
+ * made on the back-buffer in this case. */
if (vc->v3d->flag & V3D_INVALID_BACKBUF) {
validate_object_select_id(vc->depsgraph, vc->view_layer, vc->region, vc->v3d, vc->obact);
}