File: Raw.hs

package info (click to toggle)
haskell-glut 2.4.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,624 kB
  • ctags: 28
  • sloc: haskell: 10,610; ansic: 121; makefile: 2
file content (28 lines) | stat: -rw-r--r-- 878 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
-- #hide
-----------------------------------------------------------------------------
-- |
-- Module      :  Graphics.UI.GLUT.Raw
-- Copyright   :  (c) Sven Panne 2009
-- License     :  BSD-style (see the file LICENSE)
--
-- Maintainer  :  sven.panne@aedion.de
-- Stability   :  stable
-- Portability :  portable
--
-- A convenience module, combining all raw GLUT modules.
--
-----------------------------------------------------------------------------

module Graphics.UI.GLUT.Raw (
   module Graphics.UI.GLUT.Raw.APIEntry,
   module Graphics.UI.GLUT.Raw.Callbacks,
   module Graphics.UI.GLUT.Raw.Fonts,
   module Graphics.UI.GLUT.Raw.Functions,
   module Graphics.UI.GLUT.Raw.Tokens
) where

import Graphics.UI.GLUT.Raw.APIEntry
import Graphics.UI.GLUT.Raw.Callbacks
import Graphics.UI.GLUT.Raw.Fonts
import Graphics.UI.GLUT.Raw.Functions
import Graphics.UI.GLUT.Raw.Tokens