Portability | portable |
---|---|
Stability | stable |
Maintainer | sven.panne@aedion.de |
Safe Haskell | None |
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
- genLists :: GLsizei -> IO [DisplayList]
- deleteLists :: [DisplayList] -> IO ()
- isList :: DisplayList -> IO Bool
Defining Display Lists
newtype DisplayList Source
defineList :: DisplayList -> ListMode -> IO a -> IO aSource
defineNewList :: ListMode -> IO a -> IO DisplayListSource
Calling Display Lists
callList :: DisplayList -> IO ()Source
Deprecated Functions
genLists :: GLsizei -> IO [DisplayList]Source
Deprecated: use `genObjectNames' instead
deleteLists :: [DisplayList] -> IO ()Source
Deprecated: use `deleteObjectNames' instead
isList :: DisplayList -> IO BoolSource
Deprecated: use `isObjectName' instead