summaryrefslogtreecommitdiff
path: root/src/my_gtk_gl_scene_widget.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/my_gtk_gl_scene_widget.hpp')
-rw-r--r--src/my_gtk_gl_scene_widget.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/my_gtk_gl_scene_widget.hpp b/src/my_gtk_gl_scene_widget.hpp
index 212f346..b6fbe73 100644
--- a/src/my_gtk_gl_scene_widget.hpp
+++ b/src/my_gtk_gl_scene_widget.hpp
@@ -2,6 +2,7 @@
#define MY_GTK_GL_SCENE_H
#include "gtk_includes.hpp"
+#include "opencl_mesh_kit.hpp"
// Class that will contain all the OpenGL logic for displaying the OpenCL computed data
// Implementation is kept in gpudataviz.cc (I want to keep interesting code part in this file)
@@ -23,6 +24,7 @@ class MyGTKGLSceneWidget : public Gtk::DrawingArea, public Gtk::GL::Widget<MyGTK
bool do_mouse_logic(GdkEventType type, guint state, guint x, guint y);
private:
+ OpenCLMeshKit clKit;
struct camera_params { float rx; float ry; float tz; } camera;
};