Update window.cpp
All checks were successful
Run ReCI Build Test / Explore-Gitea-Actions (push) Successful in 3m25s

This commit is contained in:
2024-10-14 21:37:44 -04:00
parent 1d9424a243
commit db63cc2272

View File

@@ -306,4 +306,9 @@ void RWindow::refresh() {
auto eventData = MouseMoveEvent(mouse_coords);
OnMouseMove(eventData);
}
}
std::string RWindow::getGraphicsDriverVendor()
{
return std::string(reinterpret_cast<const char*>(glGetString(GL_VENDOR)));
}