Portability | portable |
---|---|
Stability | stable |
Maintainer | Sven Panne <[email protected]> |
Safe Haskell | None |
Graphics.Rendering.OpenGL.GL.DisplayLists
Description
This module corresponds to section 5.4 (Display Lists) of the OpenGL 2.1 specs.
- newtype DisplayList = DisplayList GLuint
- data ListMode
- defineList :: DisplayList -> ListMode -> IO a -> IO a
- defineNewList :: ListMode -> IO a -> IO DisplayList
- listIndex :: GettableStateVar (Maybe DisplayList)
- listMode :: GettableStateVar ListMode
- maxListNesting :: GettableStateVar GLsizei
- callList :: DisplayList -> IO ()
- callLists :: GLsizei -> DataType -> Ptr a -> IO ()
- listBase :: StateVar DisplayList
Defining Display Lists
newtype DisplayList Source
Constructors
DisplayList GLuint |
Constructors
Compile | |
CompileAndExecute |
defineList :: DisplayList -> ListMode -> IO a -> IO aSource
defineNewList :: ListMode -> IO a -> IO DisplayListSource
Calling Display Lists
callList :: DisplayList -> IO ()Source