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
|
#endif
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
// Available video information.
|
|
||||||
enum VideoInfo {
|
|
||||||
VIDEO_RENDERER, ///< Renderer
|
|
||||||
VIDEO_VENDOR, ///< Vendor
|
|
||||||
VIDEO_VERSION ///< Version
|
|
||||||
};
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void Init();
|
void Init();
|
||||||
wxString GetVideoInfo(enum Platform::VideoInfo which);
|
|
||||||
|
|
||||||
/// wxPlatformInfo struct.
|
/// wxPlatformInfo struct.
|
||||||
const wxPlatformInfo plat;
|
const wxPlatformInfo plat;
|
||||||
|
|
||||||
/// wxLocale instance.
|
/// wxLocale instance.
|
||||||
wxLocale *locale;
|
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