Remove fmt::format and replace with std::format

This commit is contained in:
Alexander Bock
2024-03-24 20:19:14 +01:00
parent 9878bfc8f7
commit 3ba346a227
246 changed files with 1343 additions and 1300 deletions
@@ -117,14 +117,14 @@ void RenderableSphereImageLocal::loadTexture() {
if (!texture) {
LWARNINGC(
"RenderableSphereImageLocal",
fmt::format("Could not load texture from '{}'", absPath(_texturePath))
std::format("Could not load texture from '{}'", absPath(_texturePath))
);
return;
}
LDEBUGC(
"RenderableSphereImageLocal",
fmt::format("Loaded texture from '{}'", absPath(_texturePath))
std::format("Loaded texture from '{}'", absPath(_texturePath))
);
texture->uploadTexture();
texture->setFilter(ghoul::opengl::Texture::FilterMode::LinearMipMap);