Namespace fixes
This commit is contained in:
parent
52a1c62b2c
commit
375e71dc0d
13 changed files with 81 additions and 89 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue