Rename _texture -> _video_texture.
[dcpomatic.git] / src / wx / system_information_dialog.cc
1 /*
2     Copyright (C) 2019-2021 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21
22 #include "film_viewer.h"
23 #include "gl_video_view.h"
24 #include "system_information_dialog.h"
25 #include "wx_util.h"
26
27
28 #ifdef DCPOMATIC_OSX
29 #include <OpenGL/glu.h>
30 #include <OpenGL/glext.h>
31 #else
32 #include <GL/glu.h>
33 #include <GL/glext.h>
34 #endif
35
36
37 using std::string;
38 using std::weak_ptr;
39 using std::shared_ptr;
40
41
42 SystemInformationDialog::SystemInformationDialog (wxWindow* parent, weak_ptr<FilmViewer> weak_viewer)
43         : TableDialog (parent, _("System information"), 2, 1, false)
44 {
45         auto viewer = weak_viewer.lock ();
46         shared_ptr<const GLVideoView> gl;
47         if (viewer) {
48                 gl = std::dynamic_pointer_cast<const GLVideoView>(viewer->video_view());
49         }
50
51         if (!gl) {
52                 add (_("OpenGL version"), true);
53                 add (_("unknown (OpenGL not enabled in DCP-o-matic)"), false);
54         } else {
55
56                 auto information = gl->information();
57                 auto add_string = [this, &information](GLenum name, wxString label) {
58                         add (label, true);
59                         auto i = information.find(name);
60                         if (i != information.end()) {
61                                 add (std_to_wx(i->second), false);
62                         } else {
63                                 add (_("unknown"), false);
64                         }
65                 };
66
67                 add_string (GL_VENDOR, _("Vendor"));
68                 add_string (GL_RENDERER, _("Renderer"));
69                 add_string (GL_VERSION, _("Version"));
70                 add_string (GL_SHADING_LANGUAGE_VERSION, _("Shading language version"));
71
72                 add (_("vsync"), true);
73                 add (gl->vsync_enabled() ? _("enabled") : _("not enabled"), false);
74         }
75
76         layout ();
77 }