Add required stubs for OpenGL info to the windows platform stub.

Originally committed to SVN as r3618.
This commit is contained in:
Thomas Goyne 2009-10-05 20:55:13 +00:00
parent 404e6cf081
commit d677b85b66
2 changed files with 22 additions and 1 deletions

View File

@ -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 "";
};

View File

@ -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();