| Copyright | (c) Sven Panne 2006-2019 |
|---|---|
| License | BSD3 |
| Maintainer | Sven Panne <svenpanne@gmail.com> |
| Stability | stable |
| Portability | portable |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
Graphics.Rendering.OpenGL.GL.Shaders.ProgramBinaries
Description
This module corresponds to section 7.5 (Program Binaries) of the OpenGL 4.4 spec.
Documentation
newtype ProgramBinaryFormat Source #
Constructors
| ProgramBinaryFormat GLenum |
Instances
| Show ProgramBinaryFormat Source # | |
Defined in Graphics.Rendering.OpenGL.GL.Shaders.ProgramBinaries Methods showsPrec :: Int -> ProgramBinaryFormat -> ShowS show :: ProgramBinaryFormat -> String showList :: [ProgramBinaryFormat] -> ShowS | |
| Eq ProgramBinaryFormat Source # | |
Defined in Graphics.Rendering.OpenGL.GL.Shaders.ProgramBinaries Methods (==) :: ProgramBinaryFormat -> ProgramBinaryFormat -> Bool (/=) :: ProgramBinaryFormat -> ProgramBinaryFormat -> Bool | |
| Ord ProgramBinaryFormat Source # | |
Defined in Graphics.Rendering.OpenGL.GL.Shaders.ProgramBinaries Methods compare :: ProgramBinaryFormat -> ProgramBinaryFormat -> Ordering (<) :: ProgramBinaryFormat -> ProgramBinaryFormat -> Bool (<=) :: ProgramBinaryFormat -> ProgramBinaryFormat -> Bool (>) :: ProgramBinaryFormat -> ProgramBinaryFormat -> Bool (>=) :: ProgramBinaryFormat -> ProgramBinaryFormat -> Bool max :: ProgramBinaryFormat -> ProgramBinaryFormat -> ProgramBinaryFormat min :: ProgramBinaryFormat -> ProgramBinaryFormat -> ProgramBinaryFormat | |
programBinaryFormats :: GettableStateVar [ProgramBinaryFormat] Source #
data ProgramBinary Source #
Constructors
| ProgramBinary ProgramBinaryFormat ByteString |
Instances
| Show ProgramBinary Source # | |
Defined in Graphics.Rendering.OpenGL.GL.Shaders.ProgramBinaries Methods showsPrec :: Int -> ProgramBinary -> ShowS show :: ProgramBinary -> String showList :: [ProgramBinary] -> ShowS | |
| Eq ProgramBinary Source # | |
| Ord ProgramBinary Source # | |
Defined in Graphics.Rendering.OpenGL.GL.Shaders.ProgramBinaries Methods compare :: ProgramBinary -> ProgramBinary -> Ordering (<) :: ProgramBinary -> ProgramBinary -> Bool (<=) :: ProgramBinary -> ProgramBinary -> Bool (>) :: ProgramBinary -> ProgramBinary -> Bool (>=) :: ProgramBinary -> ProgramBinary -> Bool max :: ProgramBinary -> ProgramBinary -> ProgramBinary min :: ProgramBinary -> ProgramBinary -> ProgramBinary | |
programBinary :: Program -> StateVar ProgramBinary Source #