| Copyright | (c) Sven Panne 2002-2018 |
|---|---|
| License | BSD3 |
| Maintainer | Sven Panne <svenpanne@gmail.com> |
| Stability | stable |
| Portability | portable |
| Safe Haskell | None |
| Language | Haskell2010 |
Graphics.Rendering.OpenGL.GL.RasterPos
Description
This module corresponds to section 2.13 (Current Raster Position) of the OpenGL 2.1 specs.
Documentation
class RasterPosComponent a #
Minimal complete definition
rasterPos2, rasterPos3, rasterPos4, rasterPos2v, rasterPos3v, rasterPos4v
Instances
Minimal complete definition
Instances
| RasterPosComponent a => RasterPos (Vertex4 a) # | |
Defined in Graphics.Rendering.OpenGL.GL.RasterPos | |
| RasterPosComponent a => RasterPos (Vertex3 a) # | |
Defined in Graphics.Rendering.OpenGL.GL.RasterPos | |
| RasterPosComponent a => RasterPos (Vertex2 a) # | |
Defined in Graphics.Rendering.OpenGL.GL.RasterPos | |
class WindowPosComponent a #
Minimal complete definition
windowPos2, windowPos3, windowPos2v, windowPos3v
Instances
| WindowPosComponent GLshort # | |
Defined in Graphics.Rendering.OpenGL.GL.RasterPos Methods windowPos2 :: GLshort -> GLshort -> IO () windowPos3 :: GLshort -> GLshort -> GLshort -> IO () windowPos2v :: Ptr GLshort -> IO () windowPos3v :: Ptr GLshort -> IO () | |
| WindowPosComponent GLint # | |
Defined in Graphics.Rendering.OpenGL.GL.RasterPos Methods windowPos2 :: GLint -> GLint -> IO () windowPos3 :: GLint -> GLint -> GLint -> IO () windowPos2v :: Ptr GLint -> IO () windowPos3v :: Ptr GLint -> IO () | |
| WindowPosComponent GLfloat # | |
Defined in Graphics.Rendering.OpenGL.GL.RasterPos Methods windowPos2 :: GLfloat -> GLfloat -> IO () windowPos3 :: GLfloat -> GLfloat -> GLfloat -> IO () windowPos2v :: Ptr GLfloat -> IO () windowPos3v :: Ptr GLfloat -> IO () | |
| WindowPosComponent GLdouble # | |
Defined in Graphics.Rendering.OpenGL.GL.RasterPos Methods windowPos2 :: GLdouble -> GLdouble -> IO () windowPos3 :: GLdouble -> GLdouble -> GLdouble -> IO () windowPos2v :: Ptr GLdouble -> IO () windowPos3v :: Ptr GLdouble -> IO () | |
Minimal complete definition
Instances
| WindowPosComponent a => WindowPos (Vertex3 a) # | |
Defined in Graphics.Rendering.OpenGL.GL.RasterPos | |
| WindowPosComponent a => WindowPos (Vertex2 a) # | |
Defined in Graphics.Rendering.OpenGL.GL.RasterPos | |