summaryrefslogtreecommitdiffstats
path: root/Bindings/GLX.hs
blob: f2fab65e8e6068e29288a0c69c358ab605e11abf (plain)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
{-# INCLUDE <GL/glx.h> #-}
{-# LINE 1 "Bindings/GLX.hsc" #-}
{-# LANGUAGE ForeignFunctionInterface, DeriveDataTypeable, GeneralizedNewtypeDeriving #-}
{-# LINE 2 "Bindings/GLX.hsc" #-}

module Bindings.GLX ( createColormap
                    , createWindow
                    , setClassHint
                    , chooseFBConfig
                    , getVisualFromFBConfig
                    , VisualInfo(..)
                    , SetWindowAttributes(..)
                    , nullSetWindowAttributes
                    , renderType
                    , rgbaBit
                    , drawableType
                    , windowBit
                    , xRenderable
                    , doublebuffer
                    , depthSize
                    , stencilSize
                    , createContext
                    , makeCurrent
                    , destroyContext
                    , swapBuffers
                    , Context(..)
                    , Drawable
       		    ) where

import Data.Generics
import Data.Int
import Data.Word

import Foreign.C.String (withCString)
import Foreign.C.Types
import Foreign.Ptr
import Foreign.Marshal.Alloc (alloca, allocaBytes)
import Foreign.Marshal.Array (peekArray, withArray0)
import Foreign.Storable

import Graphics.X11.Types (AttributeMask, Colormap, ColormapAlloc, Cursor, EventMask, Pixmap, Window, WindowClass, VisualID, XID)
import Graphics.X11.Xlib.Extras (none, xFree, ClassHint, resName, resClass, TextProperty)
import Graphics.X11.Xlib.Types (Dimension, Display, Pixel, Position)



{-# LINE 44 "Bindings/GLX.hsc" #-}


type Drawable = XID

newtype FBConfig = FBConfig (Ptr FBConfig)
    deriving (Eq, Ord, Show, Typeable, Data, Storable)

newtype Context = Context (Ptr Context)
    deriving (Eq, Ord, Show, Typeable, Data, Storable)

newtype Visual = Visual (Ptr Visual)
     deriving (Eq, Ord, Show, Typeable, Data, Storable)

data VisualInfo = VisualInfo
    { viVisual       :: !Visual
    , viVisualid     :: !VisualID
    , viScreen       :: !CInt
    , viDepth        :: !CInt
    , viClass        :: !CInt
    , viRedMask      :: !CULong
    , viGreenMask    :: !CULong
    , viBlueMask     :: !CULong
    , viColormapSize :: !CInt
    , viBitsPerRgb   :: !CInt
    } deriving (Eq, Ord, Show, Typeable)

instance Storable VisualInfo where
    sizeOf _ = ((40))
{-# LINE 72 "Bindings/GLX.hsc" #-}
    alignment _ = alignment (undefined :: CULong)
    
    peek vi = do
      visual <- ((\hsc_ptr -> peekByteOff hsc_ptr 0)) vi
{-# LINE 76 "Bindings/GLX.hsc" #-}
      visualid <- ((\hsc_ptr -> peekByteOff hsc_ptr 4)) vi
{-# LINE 77 "Bindings/GLX.hsc" #-}
      screen <- ((\hsc_ptr -> peekByteOff hsc_ptr 8)) vi
{-# LINE 78 "Bindings/GLX.hsc" #-}
      depth <- ((\hsc_ptr -> peekByteOff hsc_ptr 12)) vi
{-# LINE 79 "Bindings/GLX.hsc" #-}
      viclass <- ((\hsc_ptr -> peekByteOff hsc_ptr 16)) vi
{-# LINE 80 "Bindings/GLX.hsc" #-}
      red_mask <- ((\hsc_ptr -> peekByteOff hsc_ptr 20)) vi
{-# LINE 81 "Bindings/GLX.hsc" #-}
      green_mask <- ((\hsc_ptr -> peekByteOff hsc_ptr 24)) vi
{-# LINE 82 "Bindings/GLX.hsc" #-}
      blue_mask <- ((\hsc_ptr -> peekByteOff hsc_ptr 28)) vi
{-# LINE 83 "Bindings/GLX.hsc" #-}
      colormap_size <- ((\hsc_ptr -> peekByteOff hsc_ptr 32)) vi
{-# LINE 84 "Bindings/GLX.hsc" #-}
      bits_per_rgb <- ((\hsc_ptr -> peekByteOff hsc_ptr 36)) vi
{-# LINE 85 "Bindings/GLX.hsc" #-}
      
      return (VisualInfo visual visualid screen depth viclass red_mask green_mask blue_mask colormap_size bits_per_rgb)
      
    
    poke vi (VisualInfo visual visualid screen depth viclass red_mask green_mask blue_mask colormap_size bits_per_rgb) = do
                                ((\hsc_ptr -> pokeByteOff hsc_ptr 0)) vi visual
{-# LINE 91 "Bindings/GLX.hsc" #-}
                                ((\hsc_ptr -> pokeByteOff hsc_ptr 4)) vi visualid
{-# LINE 92 "Bindings/GLX.hsc" #-}
                                ((\hsc_ptr -> pokeByteOff hsc_ptr 8)) vi screen
{-# LINE 93 "Bindings/GLX.hsc" #-}
                                ((\hsc_ptr -> pokeByteOff hsc_ptr 12)) vi depth
{-# LINE 94 "Bindings/GLX.hsc" #-}
                                ((\hsc_ptr -> pokeByteOff hsc_ptr 16)) vi viclass
{-# LINE 95 "Bindings/GLX.hsc" #-}
                                ((\hsc_ptr -> pokeByteOff hsc_ptr 20)) vi red_mask
{-# LINE 96 "Bindings/GLX.hsc" #-}
                                ((\hsc_ptr -> pokeByteOff hsc_ptr 24)) vi green_mask
{-# LINE 97 "Bindings/GLX.hsc" #-}
                                ((\hsc_ptr -> pokeByteOff hsc_ptr 28)) vi blue_mask
{-# LINE 98 "Bindings/GLX.hsc" #-}
                                ((\hsc_ptr -> pokeByteOff hsc_ptr 32)) vi colormap_size
{-# LINE 99 "Bindings/GLX.hsc" #-}
                                ((\hsc_ptr -> pokeByteOff hsc_ptr 36)) vi bits_per_rgb
{-# LINE 100 "Bindings/GLX.hsc" #-}


data SetWindowAttributes = SetWindowAttributes
    { swaBackgroundPixmap   :: !Pixmap
    , swaBackgroundPixel    :: !Pixel
    , swaBorderPixmap       :: !Pixmap
    , swaBitGravity         :: !CInt
    , swaWinGravity         :: !CInt
    , swaBackingStore       :: !CInt
    , swaBackingPlanes      :: !CULong
    , swaBackingPixel       :: !CULong
    , swaSaveUnder          :: !Bool
    , swaEventMask          :: !EventMask
    , swaDoNotPropagateMask :: !CULong
    , swaOverrideRedirect   :: !Bool
    , swaColormap           :: !Colormap
    , swaCursor             :: !Cursor
    } deriving (Eq, Ord, Show, Typeable)

instance Storable SetWindowAttributes where
    sizeOf _ = ((60))
{-# LINE 121 "Bindings/GLX.hsc" #-}
    alignment _ = alignment (undefined :: CULong)
    
    peek swa = do
      background_pixmap <- ((\hsc_ptr -> peekByteOff hsc_ptr 0)) swa
{-# LINE 125 "Bindings/GLX.hsc" #-}
      background_pixel <- ((\hsc_ptr -> peekByteOff hsc_ptr 4)) swa
{-# LINE 126 "Bindings/GLX.hsc" #-}
      border_pixmap <- ((\hsc_ptr -> peekByteOff hsc_ptr 8)) swa
{-# LINE 127 "Bindings/GLX.hsc" #-}
      bit_gravity <- ((\hsc_ptr -> peekByteOff hsc_ptr 16)) swa
{-# LINE 128 "Bindings/GLX.hsc" #-}
      win_gravity <- ((\hsc_ptr -> peekByteOff hsc_ptr 20)) swa
{-# LINE 129 "Bindings/GLX.hsc" #-}
      backing_store <- ((\hsc_ptr -> peekByteOff hsc_ptr 24)) swa
{-# LINE 130 "Bindings/GLX.hsc" #-}
      backing_planes <- ((\hsc_ptr -> peekByteOff hsc_ptr 28)) swa
{-# LINE 131 "Bindings/GLX.hsc" #-}
      backing_pixel <- ((\hsc_ptr -> peekByteOff hsc_ptr 32)) swa
{-# LINE 132 "Bindings/GLX.hsc" #-}
      save_under <- ((\hsc_ptr -> peekByteOff hsc_ptr 36)) swa
{-# LINE 133 "Bindings/GLX.hsc" #-}
      event_mask <- ((\hsc_ptr -> peekByteOff hsc_ptr 40)) swa
{-# LINE 134 "Bindings/GLX.hsc" #-}
      do_not_propagate_mask <- ((\hsc_ptr -> peekByteOff hsc_ptr 44)) swa
{-# LINE 135 "Bindings/GLX.hsc" #-}
      override_redirect <- ((\hsc_ptr -> peekByteOff hsc_ptr 48)) swa
{-# LINE 136 "Bindings/GLX.hsc" #-}
      colormap <- ((\hsc_ptr -> peekByteOff hsc_ptr 52)) swa
{-# LINE 137 "Bindings/GLX.hsc" #-}
      cursor <- ((\hsc_ptr -> peekByteOff hsc_ptr 56)) swa
{-# LINE 138 "Bindings/GLX.hsc" #-}
      
      return (SetWindowAttributes
              background_pixmap
              background_pixel
              border_pixmap
              bit_gravity
              win_gravity
              backing_store
              backing_planes
              backing_pixel
              save_under
              event_mask
              do_not_propagate_mask
              override_redirect
              colormap
              cursor)

    poke swa (SetWindowAttributes
              background_pixmap
              background_pixel
              border_pixmap
              bit_gravity
              win_gravity
              backing_store
              backing_planes
              backing_pixel
              save_under
              event_mask
              do_not_propagate_mask
              override_redirect
              colormap
              cursor) = do
      ((\hsc_ptr -> pokeByteOff hsc_ptr 0)) swa background_pixmap
{-# LINE 171 "Bindings/GLX.hsc" #-}
      ((\hsc_ptr -> pokeByteOff hsc_ptr 4)) swa background_pixel
{-# LINE 172 "Bindings/GLX.hsc" #-}
      ((\hsc_ptr -> pokeByteOff hsc_ptr 8)) swa border_pixmap
{-# LINE 173 "Bindings/GLX.hsc" #-}
      ((\hsc_ptr -> pokeByteOff hsc_ptr 16)) swa bit_gravity
{-# LINE 174 "Bindings/GLX.hsc" #-}
      ((\hsc_ptr -> pokeByteOff hsc_ptr 20)) swa win_gravity
{-# LINE 175 "Bindings/GLX.hsc" #-}
      ((\hsc_ptr -> pokeByteOff hsc_ptr 24)) swa backing_store
{-# LINE 176 "Bindings/GLX.hsc" #-}
      ((\hsc_ptr -> pokeByteOff hsc_ptr 28)) swa backing_planes
{-# LINE 177 "Bindings/GLX.hsc" #-}
      ((\hsc_ptr -> pokeByteOff hsc_ptr 32)) swa backing_pixel
{-# LINE 178 "Bindings/GLX.hsc" #-}
      ((\hsc_ptr -> pokeByteOff hsc_ptr 36)) swa save_under
{-# LINE 179 "Bindings/GLX.hsc" #-}
      ((\hsc_ptr -> pokeByteOff hsc_ptr 40)) swa event_mask
{-# LINE 180 "Bindings/GLX.hsc" #-}
      ((\hsc_ptr -> pokeByteOff hsc_ptr 44)) swa do_not_propagate_mask
{-# LINE 181 "Bindings/GLX.hsc" #-}
      ((\hsc_ptr -> pokeByteOff hsc_ptr 48)) swa override_redirect
{-# LINE 182 "Bindings/GLX.hsc" #-}
      ((\hsc_ptr -> pokeByteOff hsc_ptr 52)) swa colormap
{-# LINE 183 "Bindings/GLX.hsc" #-}
      ((\hsc_ptr -> pokeByteOff hsc_ptr 56)) swa cursor
{-# LINE 184 "Bindings/GLX.hsc" #-}

nullSetWindowAttributes :: SetWindowAttributes
nullSetWindowAttributes = (SetWindowAttributes 0 0 0 0 0 0 0 0 False 0 0 False 0 0)
           

foreign import ccall unsafe "GL/glx.h XCreateColormap"
        createColormap :: Display -> Window -> Visual -> ColormapAlloc -> IO Colormap

foreign import ccall unsafe "GL/glx.h XCreateWindow"
        createWindow :: Display -> Window -> Position -> Position ->
                        Dimension -> Dimension -> CInt -> CInt -> WindowClass ->
                        Visual -> AttributeMask -> Ptr SetWindowAttributes -> IO Window

foreign import ccall unsafe "GL/glx.h XSetClassHint"
        xSetClassHint :: Display -> Window -> Ptr ClassHint -> IO ()

setClassHint :: Display -> Window -> ClassHint -> IO ()
setClassHint disp wnd hint = allocaBytes ((8)) $ \p ->
{-# LINE 202 "Bindings/GLX.hsc" #-}
                             withCString (resName hint) $ \res_name ->
                             withCString (resClass hint) $ \res_class -> do
                               ((\hsc_ptr -> pokeByteOff hsc_ptr 0)) p res_name
{-# LINE 205 "Bindings/GLX.hsc" #-}
                               ((\hsc_ptr -> pokeByteOff hsc_ptr 4)) p res_class
{-# LINE 206 "Bindings/GLX.hsc" #-}
                               xSetClassHint disp wnd p


foreign import ccall unsafe "GL/glx.h glXChooseFBConfig"
        glXChooseFBConfig :: Display -> CInt -> Ptr CInt -> Ptr CInt -> IO (Ptr FBConfig)

chooseFBConfig :: Display -> CInt -> [(CInt, CInt)] -> IO [FBConfig]
chooseFBConfig disp sc attr = alloca $ \n -> withArray0 (fromIntegral none) (concatMap (\(a,b) -> [a,b]) attr) $ \attrp -> do
                                configs <- glXChooseFBConfig disp sc attrp n
                                nelements <- peek n
                                configlist <- peekArray (fromIntegral nelements) configs
                                xFree configs
                                return configlist
                                

renderType :: CInt
renderType = (32785)
{-# LINE 223 "Bindings/GLX.hsc" #-}

rgbaBit :: CInt
rgbaBit = (1)
{-# LINE 226 "Bindings/GLX.hsc" #-}

drawableType :: CInt
drawableType = (32784)
{-# LINE 229 "Bindings/GLX.hsc" #-}

windowBit :: CInt
windowBit = (1)
{-# LINE 232 "Bindings/GLX.hsc" #-}

xRenderable :: CInt
xRenderable = (32786)
{-# LINE 235 "Bindings/GLX.hsc" #-}

doublebuffer :: CInt
doublebuffer = (5)
{-# LINE 238 "Bindings/GLX.hsc" #-}

depthSize :: CInt
depthSize = (12)
{-# LINE 241 "Bindings/GLX.hsc" #-}

stencilSize :: CInt
stencilSize = (13)
{-# LINE 244 "Bindings/GLX.hsc" #-}

foreign import ccall unsafe "GL/glx.h glXGetVisualFromFBConfig"
        glXGetVisualFromFBConfig :: Display -> FBConfig -> IO (Ptr VisualInfo)

getVisualFromFBConfig :: Display -> FBConfig -> IO (VisualInfo)
getVisualFromFBConfig disp config = do
  viptr <- glXGetVisualFromFBConfig disp config
  vi <- peek viptr
  xFree viptr
  return vi

foreign import ccall unsafe "GL/glx.h glXCreateContext"
        createContext :: Display -> Ptr VisualInfo -> Context -> Bool -> IO Context

foreign import ccall unsafe "GL/glx.h glXMakeCurrent"
        makeCurrent :: Display -> Drawable -> Context -> IO Bool

foreign import ccall unsafe "GL/glx.h glXDestroyContext"
        destroyContext :: Display -> Context -> IO ()

foreign import ccall unsafe "GL/glx.h glXSwapBuffers"
        swapBuffers :: Display -> Drawable -> IO ()