Hoogle Search

Within LTS Haskell 24.58 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. matrixMode :: StateVar MatrixMode

    OpenGL Graphics.Rendering.OpenGL.GL.CoordTrans

    Controls which matrix stack is the target for subsequent matrix operations. The initial value is (Modelview 0).

  2. multMatrix :: (Matrix m, MatrixComponent c) => m c -> IO ()

    OpenGL Graphics.Rendering.OpenGL.GL.CoordTrans

    No documentation available.

  3. newMatrix :: (Matrix m, MatrixComponent c) => MatrixOrder -> [c] -> IO (m c)

    OpenGL Graphics.Rendering.OpenGL.GL.CoordTrans

    No documentation available.

  4. preservingMatrix :: IO a -> IO a

    OpenGL Graphics.Rendering.OpenGL.GL.CoordTrans

    Push the current matrix stack down by one, duplicating the current matrix, excute the given action, and pop the current matrix stack, replacing the current matrix with the one below it on the stack (i.e. restoring it to its previous state). The returned value is that of the given action. Note that a round-trip to the server is probably required. For a more efficient version, see unsafePreservingMatrix.

  5. unsafePreservingMatrix :: IO a -> IO a

    OpenGL Graphics.Rendering.OpenGL.GL.CoordTrans

    A more efficient, but potentially dangerous version of preservingMatrix: The given action is not allowed to throw an exception or change the current matrix mode permanently.

  6. withMatrix :: (Matrix m, MatrixComponent c) => m c -> (MatrixOrder -> Ptr c -> IO a) -> IO a

    OpenGL Graphics.Rendering.OpenGL.GL.CoordTrans

    Call the action with the given matrix. Note: The action is not allowed to modify the matrix elements!

  7. withNewMatrix :: (Matrix m, MatrixComponent c) => MatrixOrder -> (Ptr c -> IO ()) -> IO (m c)

    OpenGL Graphics.Rendering.OpenGL.GL.CoordTrans

    Create a new matrix of the given order (containing undefined elements) and call the action to fill it with 4x4 elements.

  8. CopyPixelToken :: VertexInfo -> FeedbackToken

    OpenGL Graphics.Rendering.OpenGL.GL.Feedback

    No documentation available.

  9. DrawPixelToken :: VertexInfo -> FeedbackToken

    OpenGL Graphics.Rendering.OpenGL.GL.Feedback

    No documentation available.

  10. module Graphics.Rendering.OpenGL.GL.PixelRectangles

    This module corresponds to section 3.6 (Pixel Rectangles) of the OpenGL 2.1 specs.

Page 237 of many | Previous | Next