File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -376,7 +376,7 @@ void GLEngineEGL::sortAvailableDevicesByPreference(
376376 // NOTE: on many machines (cloud VMs?) the query string above is nullptr, and this whole function does nothing
377377 // useful
378378 if (vendorStrRaw == nullptr ) {
379- info (5 , " EGLDevice " + std::to_string (iDevice) + " -- vendor: NULL priority score: " std::to_string (score);
379+ info (5 , " EGLDevice " + std::to_string (iDevice) + " -- vendor: NULL priority score: " + std::to_string (score);
380380 scoreDevices.emplace_back (score, iDevice);
381381 continue ;
382382 }
@@ -405,7 +405,7 @@ void GLEngineEGL::sortAvailableDevicesByPreference(
405405
406406 // at high verbosity levels, log the priority
407407 if (polyscope::options::verbosity > 5 ) {
408- info (5 , " EGLDevice " + std::to_string (iDevice) + " -- vendor: " + vendorStr + " priority score: " std::to_string (score);
408+ info (5 , " EGLDevice " + std::to_string (iDevice) + " -- vendor: " + vendorStr + " priority score: " + std::to_string (score);
409409 }
410410
411411 scoreDevices.emplace_back (score, iDevice);
You can’t perform that action at this time.
0 commit comments