Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/render/opengl/gl_engine_egl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ void GLEngineEGL::sortAvailableDevicesByPreference(
// NOTE: on many machines (cloud VMs?) the query string above is nullptr, and this whole function does nothing
// useful
if (vendorStrRaw == nullptr) {
info(5, "EGLDevice " + std::to_string(iDevice) + " -- vendor: NULL priority score: " + std::to_string(score);
info(5, "EGLDevice " + std::to_string(iDevice) + " -- vendor: NULL priority score: " + std::to_string(score));
scoreDevices.emplace_back(score, iDevice);
continue;
}
Expand Down Expand Up @@ -405,7 +405,7 @@ void GLEngineEGL::sortAvailableDevicesByPreference(

// at high verbosity levels, log the priority
if (polyscope::options::verbosity > 5) {
info(5, "EGLDevice " + std::to_string(iDevice) + " -- vendor: " + vendorStr + " priority score: " + std::to_string(score);
info(5, "EGLDevice " + std::to_string(iDevice) + " -- vendor: " + vendorStr + " priority score: " + std::to_string(score));
}

scoreDevices.emplace_back(score, iDevice);
Expand Down