diff --git a/aegisub/reporter/platform_windows.cpp b/aegisub/reporter/platform_windows.cpp index a6f08fc21..677cc68c3 100644 --- a/aegisub/reporter/platform_windows.cpp +++ b/aegisub/reporter/platform_windows.cpp @@ -82,3 +82,18 @@ wxString PlatformWindows::AntiVirus() { wxString PlatformWindows::Firewall() { return ""; }; +wxString PlatformWindows::OpenGLVendor() { + return ""; +}; + +wxString PlatformWindows::OpenGLRenderer() { + return ""; +}; + +wxString PlatformWindows::OpenGLVersion() { + return ""; +}; + +wxString PlatformWindows::OpenGLExt() { + return ""; +}; diff --git a/aegisub/reporter/platform_windows.h b/aegisub/reporter/platform_windows.h index 6496fa232..85235a364 100644 --- a/aegisub/reporter/platform_windows.h +++ b/aegisub/reporter/platform_windows.h @@ -20,7 +20,7 @@ class Platform; -/// @brief General Unix functions. +/// @brief General Windows functions. class PlatformWindows : public Platform { public: PlatformWindows() {}; @@ -37,6 +37,12 @@ public: virtual wxString CPUFeatures2(); virtual wxString Memory(); + // OpenGL + virtual wxString OpenGLVendor(); + virtual wxString OpenGLRenderer(); + virtual wxString OpenGLVersion(); + virtual wxString OpenGLExt(); + // Windows Specific virtual wxString ServicePack(); virtual wxString GraphicsVersion();