Skip to content

Commit

Permalink
unbreak build
Browse files Browse the repository at this point in the history
  • Loading branch information
nmwsharp committed Jan 28, 2025
1 parent 9f2997b commit bde579f
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit bde579f

Please sign in to comment.