Fixed additional typos

Went through the source with VNNCC to correct as many found typos as possible

Co-Authored-By: VNC <52937757+VNNCC@users.noreply.github.com>
This commit is contained in:
W2.Wizard
2021-01-05 02:14:21 +01:00
parent f7c17d96ce
commit 4d8cc9aef7
22 changed files with 53 additions and 53 deletions

View File

@@ -64,7 +64,7 @@ void MaterialLayer::Prepare()
Guid MaterialLayer::GetMappedParamId(const Guid& id)
{
// TODO: test ParamIdsMappings using Dictionary. will performance change? mamybe we don't wont to allocate too much memory
// TODO: test ParamIdsMappings using Dictionary. will performance change? maybe we don't wont to allocate too much memory
for (int32 i = 0; i < ParamIdsMappings.Count(); i++)
{

View File

@@ -355,7 +355,7 @@ bool ProcessMesh(AssimpImporterData& data, const aiMesh* aMesh, MeshData& mesh,
mesh.BlendIndices.SetAll(Int4::Zero);
mesh.BlendWeights.SetAll(Vector4::Zero);
// Build skinning clusters and fill controls points data stutcture
// Build skinning clusters and fill controls points data structure
for (unsigned boneId = 0; boneId < aMesh->mNumBones; boneId++)
{
const auto aBone = aMesh->mBones[boneId];

View File

@@ -316,7 +316,7 @@ bool TextureTool::Convert(TextureData& dst, const TextureData& src, const PixelF
}
if (src.Format == dstFormat)
{
LOG(Warning, "Soure data and destination format are the same. Cannot perform conversion.");
LOG(Warning, "Source data and destination format are the same. Cannot perform conversion.");
return true;
}
if (src.Depth != 1)
@@ -343,7 +343,7 @@ bool TextureTool::Resize(TextureData& dst, const TextureData& src, int32 dstWidt
}
if (src.Width == dstWidth && src.Height == dstHeight)
{
LOG(Warning, "Soure data and destination dimensions are the same. Cannot perform resizing.");
LOG(Warning, "Source data and destination dimensions are the same. Cannot perform resizing.");
return true;
}
if (src.Depth != 1)