* Move VideoInfo under private:

* Add doxygen docs for GetVideoInfo().

Originally committed to SVN as r3595.
This commit is contained in:
Amar Takhar 2009-09-27 09:58:13 +00:00
parent b2a7247d01
commit 38d5f06821
1 changed files with 14 additions and 8 deletions

View File

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