Namespace fixes

This commit is contained in:
Magnus Norddahl 2023-09-02 13:09:57 +02:00
commit 375e71dc0d
13 changed files with 81 additions and 89 deletions

View file

@ -50,7 +50,7 @@ VkRaytrace::VkRaytrace(VulkanRenderDevice* fb) : fb(fb)
SetLevelMesh(nullptr);
}
void VkRaytrace::SetLevelMesh(hwrenderer::LevelMesh* mesh)
void VkRaytrace::SetLevelMesh(LevelMesh* mesh)
{
if (!mesh)
mesh = &NullMesh;
@ -107,7 +107,7 @@ void VkRaytrace::CreateBuffers()
nodesHeader.root = Mesh->Collision->get_root();
TArray<PortalInfo> portalInfo;
for (auto& portal : Mesh->portals)
for (auto& portal : Mesh->Portals)
{
PortalInfo info;
info.transformation = portal.transformation;