Skip to content

Commit

Permalink
Update plot_manager.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
kcleal committed Aug 27, 2024
1 parent e9dc15f commit a8bcc19
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/plot_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -345,9 +345,9 @@ namespace Manager {
const GLubyte *rend = glGetString(GL_RENDERER);
const GLubyte *ver = glGetString(GL_VERSION);
const GLubyte *ven = glGetString(GL_VENDOR);
std::cerr << "OpenGL renderer: " << rend;
std::cerr << "OpenGL version: " << ver;
std::cerr << "OpenGL vendor: " << ven;
std::cerr << "OpenGL renderer: " << rend << std::endl;
std::cerr << "OpenGL version: " << ver << std::endl;
std::cerr << "OpenGL vendor: " << ven << std::endl;
}

if (rasterSurfacePtr == nullptr) {
Expand Down

0 comments on commit a8bcc19

Please sign in to comment.