Skip to content
Snippets Groups Projects
Commit 52225dc3 authored by Nils Petter Skålerud's avatar Nils Petter Skålerud
Browse files

Super small fix to Renderer::MeshDocument::ToCreateInfo, missing return statement.

parent 2a556fb2
Branches
No related tags found
No related merge requests found
......@@ -160,6 +160,8 @@ namespace Engine
returnValue.normalByteOffset = std::move(input.GetByteOffset(Attribute::Normal));
returnValue.tangentByteOffset = std::move(input.GetByteOffset(Attribute::Tangent));
returnValue.indexByteOffset = std::move(input.GetByteOffset(Attribute::Index));
return returnValue;
}
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment