#pragma once #include #include #include #include namespace pika { struct OpenglLogsWindow { void init(pika::pikaImgui::ImGuiIdsManager &idManager); void update(bool &open); static constexpr char *ICON = ICON_FK_EXCLAMATION_TRIANGLE; static constexpr char *NAME = "opengl errors"; static constexpr char *ICON_NAME = ICON_FK_EXCLAMATION_TRIANGLE " opengl errors"; std::unordered_map errorsReported; int imguiId = 0; }; }