mirror of https://github.com/odrling/Aegisub
Add required stubs for OpenGL info to the windows platform stub.
Originally committed to SVN as r3618.
This commit is contained in:
parent
404e6cf081
commit
d677b85b66
|
@ -82,3 +82,18 @@ wxString PlatformWindows::AntiVirus() {
|
||||||
wxString PlatformWindows::Firewall() {
|
wxString PlatformWindows::Firewall() {
|
||||||
return "";
|
return "";
|
||||||
};
|
};
|
||||||
|
wxString PlatformWindows::OpenGLVendor() {
|
||||||
|
return "";
|
||||||
|
};
|
||||||
|
|
||||||
|
wxString PlatformWindows::OpenGLRenderer() {
|
||||||
|
return "";
|
||||||
|
};
|
||||||
|
|
||||||
|
wxString PlatformWindows::OpenGLVersion() {
|
||||||
|
return "";
|
||||||
|
};
|
||||||
|
|
||||||
|
wxString PlatformWindows::OpenGLExt() {
|
||||||
|
return "";
|
||||||
|
};
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
|
|
||||||
class Platform;
|
class Platform;
|
||||||
|
|
||||||
/// @brief General Unix functions.
|
/// @brief General Windows functions.
|
||||||
class PlatformWindows : public Platform {
|
class PlatformWindows : public Platform {
|
||||||
public:
|
public:
|
||||||
PlatformWindows() {};
|
PlatformWindows() {};
|
||||||
|
@ -37,6 +37,12 @@ public:
|
||||||
virtual wxString CPUFeatures2();
|
virtual wxString CPUFeatures2();
|
||||||
virtual wxString Memory();
|
virtual wxString Memory();
|
||||||
|
|
||||||
|
// OpenGL
|
||||||
|
virtual wxString OpenGLVendor();
|
||||||
|
virtual wxString OpenGLRenderer();
|
||||||
|
virtual wxString OpenGLVersion();
|
||||||
|
virtual wxString OpenGLExt();
|
||||||
|
|
||||||
// Windows Specific
|
// Windows Specific
|
||||||
virtual wxString ServicePack();
|
virtual wxString ServicePack();
|
||||||
virtual wxString GraphicsVersion();
|
virtual wxString GraphicsVersion();
|
||||||
|
|
Loading…
Reference in New Issue