mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-05-03 17:30:04 -05:00
Remove fmt::format and replace with std::format
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user