summaryrefslogtreecommitdiff
path: root/vcl/inc/opengl/x11/X11DeviceInfo.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/inc/opengl/x11/X11DeviceInfo.hxx')
-rw-r--r--vcl/inc/opengl/x11/X11DeviceInfo.hxx26
1 files changed, 26 insertions, 0 deletions
diff --git a/vcl/inc/opengl/x11/X11DeviceInfo.hxx b/vcl/inc/opengl/x11/X11DeviceInfo.hxx
index dfb720450d9b..c34deb3b8549 100644
--- a/vcl/inc/opengl/x11/X11DeviceInfo.hxx
+++ b/vcl/inc/opengl/x11/X11DeviceInfo.hxx
@@ -44,6 +44,32 @@ public:
virtual ~X11OpenGLDeviceInfo();
virtual bool isDeviceBlocked() SAL_OVERRIDE;
+
+ const OString& GetVendor() const
+ {
+ return maVendor;
+ }
+
+ const OString& GetRenderer() const
+ {
+ return maRenderer;
+ }
+
+ const OString& GetVersion() const
+ {
+ return maVersion;
+ }
+
+ const OString& GetOS() const
+ {
+ return maOS;
+ }
+
+ const OString& GetOSRelease() const
+ {
+ return maOSRelease;
+ }
+
};
#endif