diff --git a/aegisub/reporter/include/platform.h b/aegisub/reporter/include/platform.h index 097791ea4..819a6ee35 100644 --- a/aegisub/reporter/include/platform.h +++ b/aegisub/reporter/include/platform.h @@ -287,20 +287,26 @@ public: #endif //@} - // Available video information. - enum VideoInfo { - VIDEO_RENDERER, ///< Renderer - VIDEO_VENDOR, ///< Vendor - VIDEO_VERSION ///< Version - }; - private: void Init(); - wxString GetVideoInfo(enum Platform::VideoInfo which); /// wxPlatformInfo struct. const wxPlatformInfo plat; /// wxLocale instance. wxLocale *locale; + + + /// Available video information. + enum VideoInfo { + VIDEO_RENDERER, ///< Renderer + VIDEO_VENDOR, ///< Vendor + VIDEO_VERSION ///< Version + }; + + /// Retrieve OpenGL video information. + /// @param which Requested information + /// @return Video info. + wxString GetVideoInfo(enum Platform::VideoInfo which); + };