fixing depth image issue

This commit is contained in:
Kbz-8
2025-05-03 21:24:00 +02:00
parent 18933eeb0e
commit d9d964b75f
16 changed files with 157 additions and 54 deletions

View File

@@ -39,7 +39,7 @@ namespace Scop
buffer.GetData()[i + 2] = data.x;
buffer.GetData()[i + 3] = 0xFF;
}
Message("BMP Loader : loaded %", path);
Message("BMP Loader: loaded %", path);
return buffer;
}
}

View File

@@ -11,7 +11,7 @@ namespace Scop
{
if(!std::filesystem::exists(path))
{
Error("OBJ loader : OBJ file does not exists; %", path);
Error("OBJ loader: OBJ file does not exists; %", path);
return std::nullopt;
}
char line[1024];
@@ -88,7 +88,7 @@ namespace Scop
ObjData::FaceList& fl = face;
fl.second.push_back(fl.first.size());
}
Message("OBJ Loader : loaded %", path);
Message("OBJ Loader: loaded %", path);
return data;
}