Portability | portable |
---|---|
Stability | stable |
Maintainer | [email protected] |
Safe Haskell | None |
Graphics.Rendering.OpenGL.GL.PixelRectangles.Convolution
Description
This module corresponds to a part of section 3.6.1 (Pixel Storage Modes) of the OpenGL 2.1 specs.
Documentation
data ConvolutionTarget Source
Constructors
Convolution1D | |
Convolution2D | |
Separable2D |
convolutionFilter1D :: PixelInternalFormat -> GLsizei -> PixelData a -> IO ()Source
getConvolutionFilter1D :: PixelData a -> IO ()Source
convolutionFilter2D :: PixelInternalFormat -> Size -> PixelData a -> IO ()Source
getConvolutionFilter2D :: PixelData a -> IO ()Source
separableFilter2D :: PixelInternalFormat -> Size -> PixelData a -> PixelData a -> IO ()Source
getSeparableFilter2D :: PixelData a -> PixelData a -> IO ()Source
copyConvolutionFilter1D :: PixelInternalFormat -> Position -> GLsizei -> IO ()Source
copyConvolutionFilter2D :: PixelInternalFormat -> Position -> Size -> IO ()Source
data ConvolutionBorderMode Source
Constructors
Reduce | |
ConstantBorder (Color4 GLfloat) | |
ReplicateBorder |