mirror of https://github.com/odrling/Aegisub
* Move VideoInfo under private:
* Add doxygen docs for GetVideoInfo(). Originally committed to SVN as r3595.
This commit is contained in:
parent
b2a7247d01
commit
38d5f06821
|
@ -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);
|
||||
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue