summaryrefslogtreecommitdiff
path: root/src/actions
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-08-27 02:33:48 +0300
committerAndrei Karas <akaras@inbox.ru>2014-08-27 02:33:48 +0300
commiteade4818db87cc41e4c014688e5ee0d15ede6912 (patch)
tree422a84ea0dc5444fad986a75b6c783f83a111aec /src/actions
parent1b27066e2d98c82b0bf135188ebb57e16af669df (diff)
downloadplus-eade4818db87cc41e4c014688e5ee0d15ede6912.tar.gz
plus-eade4818db87cc41e4c014688e5ee0d15ede6912.tar.bz2
plus-eade4818db87cc41e4c014688e5ee0d15ede6912.tar.xz
plus-eade4818db87cc41e4c014688e5ee0d15ede6912.zip
Move chat command /dumpogl into actions.
Diffstat (limited to 'src/actions')
-rw-r--r--src/actions/actions.cpp11
-rw-r--r--src/actions/actions.h1
2 files changed, 12 insertions, 0 deletions
diff --git a/src/actions/actions.cpp b/src/actions/actions.cpp
index 343caedf7..6d62f9770 100644
--- a/src/actions/actions.cpp
+++ b/src/actions/actions.cpp
@@ -73,6 +73,9 @@
#include "gui/widgets/tabs/chattabtype.h"
#include "render/graphics.h"
+#if defined USE_OPENGL
+#include "render/normalopenglgraphics.h"
+#endif
#include "net/beinghandler.h"
#include "net/chathandler.h"
@@ -960,4 +963,12 @@ impHandler(dumpTests)
return true;
}
+impHandler0(dumpOGL)
+{
+#if defined USE_OPENGL && !defined ANDROID
+ NormalOpenGLGraphics::dumpSettings();
+#endif
+ return true;
+}
+
} // namespace Actions
diff --git a/src/actions/actions.h b/src/actions/actions.h
index 175e2d530..4f8affb95 100644
--- a/src/actions/actions.h
+++ b/src/actions/actions.h
@@ -75,6 +75,7 @@ namespace Actions
decHandler(dumpGraphics);
decHandler(dumpEnvironment);
decHandler(dumpTests);
+ decHandler(dumpOGL);
} // namespace Actions
#undef decHandler