Cleanup: typos in comments

This commit is contained in:
Philipp Oeser 2021-11-19 15:55:47 +01:00
parent d7aaa145c6
commit 330290d2a8
2 changed files with 2 additions and 2 deletions

View File

@ -2798,7 +2798,7 @@ float (*BKE_pbvh_vert_coords_alloc(PBVH *pbvh))[3]
void BKE_pbvh_vert_coords_apply(PBVH *pbvh, const float (*vertCos)[3], const int totvert)
{
if (totvert != pbvh->totvert) {
BLI_assert_msg(0, "PBVH: Given deforming vcos number does not natch PBVH vertex number!");
BLI_assert_msg(0, "PBVH: Given deforming vcos number does not match PBVH vertex number!");
return;
}

View File

@ -155,7 +155,7 @@ void CompositorOperation::execute_region(rcti *rect, unsigned int /*tile_number*
if (rd->mode & R_BORDER && rd->mode & R_CROP) {
/**
* When using cropped render result, need to re-position area of interest,
* so it'll natch bounds of render border within frame. By default, canvas
* so it'll match bounds of render border within frame. By default, canvas
* will be centered between full frame and cropped frame, so we use such
* scheme to map cropped coordinates to full-frame coordinates
*