diff options
Diffstat (limited to 'GLDriver.hs')
-rw-r--r-- | GLDriver.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/GLDriver.hs b/GLDriver.hs index 74c02e2..bc55720 100644 --- a/GLDriver.hs +++ b/GLDriver.hs @@ -16,6 +16,8 @@ class Driver a where initGL :: a -> IO a deinitGL :: a -> IO () + swapBuffers :: a -> IO () + nextEvent :: a -> IO (Maybe SomeEvent) |