]> git.tdb.fi Git - libs/gui.git/blobdiff - source/gbase/simplewindow.cpp
Header updates
[libs/gui.git] / source / gbase / simplewindow.cpp
index aa34c04cfa046eec2bceb92df1e1070a9f8ae6b1..c782bab75a4151252ec7b910417112feed7a05b2 100644 (file)
@@ -1,22 +1,20 @@
-/* $Id$
-
-This file is part of libmspgbase
-Copyright © 2008  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
 #include "simplewindow.h"
 
 namespace Msp {
 namespace Graphics {
 
-SimpleWindow::SimpleWindow(unsigned w, unsigned h):
-       Window(dpy, w, h)
+SimpleWindow::SimpleWindow(unsigned w, unsigned h, bool fs):
+       Window(dpy, w, h, fs)
 { }
 
+void SimpleWindow::tick()
+{
+       dpy.tick();
+}
+
 
-SimpleGLWindow::SimpleGLWindow(unsigned w, unsigned h):
-       SimpleWindow(w, h),
+SimpleGLWindow::SimpleGLWindow(unsigned w, unsigned h, bool fs):
+       SimpleWindow(w, h, fs),
        gl_ctx(*this)
 { }