1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-04-25 13:17:46 +00:00

renderer: Remove unnecessary imgui font size message

This commit is contained in:
Joshua Goins 2024-02-04 14:56:04 -05:00
parent 7ee5622561
commit 4f99fc363d

View file

@ -302,8 +302,6 @@ void ImGuiPass::createFontImage()
int width = 0, height = 0;
io.Fonts->GetTexDataAsRGBA32(&pixels, &width, &height);
qInfo() << "Uploading imgui font size" << width << "x" << height;
auto texture = renderer_.addTexture(width, height, pixels, width * height * 4);
fontImageView_ = texture.view;
fontSampler_ = texture.sampler;