OpenGLRaw-2.0.0.0: A raw binding for the OpenGL graphics system

Copyright(c) Sven Panne 2013
LicenseBSD3
MaintainerSven Panne <svenpanne@gmail.com>
Stabilitystable
Portabilityportable
Safe HaskellNone
LanguageHaskell2010

Graphics.Rendering.OpenGL.Raw.EXT.Convolution

Contents

Description

All raw functions and tokens from the EXT_convolution extension, see http://www.opengl.org/registry/specs/EXT/convolution.txt.

Synopsis

Functions

glConvolutionFilter1D Source

Arguments

:: GLenum

target of type ConvolutionTarget.

-> GLenum

internalformat of type PixelInternalFormat.

-> GLsizei

width.

-> GLenum

format of type PixelFormat.

-> GLenum

type of type PixelType.

-> Ptr a

image pointing to COMPSIZE(format,type,width) elements of type a.

-> IO () 

Manual page for OpenGL 2.x

glConvolutionFilter2D Source

Arguments

:: GLenum

target of type ConvolutionTarget.

-> GLenum

internalformat of type PixelInternalFormat.

-> GLsizei

width.

-> GLsizei

height.

-> GLenum

format of type PixelFormat.

-> GLenum

type of type PixelType.

-> Ptr a

image pointing to COMPSIZE(format,type,width,height) elements of type a.

-> IO () 

Manual page for OpenGL 2.x

glCopyConvolutionFilter1D Source

Arguments

:: GLenum

target of type ConvolutionTarget.

-> GLenum

internalformat of type PixelInternalFormat.

-> GLint

x of type WinCoord.

-> GLint

y of type WinCoord.

-> GLsizei

width.

-> IO () 

Manual page for OpenGL 2.x

glCopyConvolutionFilter2D Source

Arguments

:: GLenum

target of type ConvolutionTarget.

-> GLenum

internalformat of type PixelInternalFormat.

-> GLint

x of type WinCoord.

-> GLint

y of type WinCoord.

-> GLsizei

width.

-> GLsizei

height.

-> IO () 

Manual page for OpenGL 2.x

glGetConvolutionFilter Source

Arguments

:: GLenum

target of type ConvolutionTarget.

-> GLenum

format of type PixelFormat.

-> GLenum

type of type PixelType.

-> Ptr a

image pointing to COMPSIZE(target,format,type) elements of type a.

-> IO () 

Manual page for OpenGL 2.x

glSeparableFilter2D Source

Arguments

:: GLenum

target of type SeparableTarget.

-> GLenum

internalformat of type PixelInternalFormat.

-> GLsizei

width.

-> GLsizei

height.

-> GLenum

format of type PixelFormat.

-> GLenum

type of type PixelType.

-> Ptr a

row pointing to COMPSIZE(target,format,type,width) elements of type a.

-> Ptr b

column pointing to COMPSIZE(target,format,type,height) elements of type b.

-> IO () 

Manual page for OpenGL 2.x

glGetSeparableFilter Source

Arguments

:: GLenum

target of type SeparableTarget.

-> GLenum

format of type PixelFormat.

-> GLenum

type of type PixelType.

-> Ptr a

row pointing to COMPSIZE(target,format,type) elements of type a.

-> Ptr b

column pointing to COMPSIZE(target,format,type) elements of type b.

-> Ptr c

span pointing to COMPSIZE(target,format,type) elements of type c.

-> IO () 

Manual page for OpenGL 2.x

glConvolutionParameteri Source

Arguments

:: GLenum

target of type ConvolutionTarget.

-> GLenum

pname of type ConvolutionParameter.

-> GLint

params of type CheckedInt32.

-> IO () 

Manual page for OpenGL 2.x

glConvolutionParameteriv Source

Arguments

:: GLenum

target of type ConvolutionTarget.

-> GLenum

pname of type ConvolutionParameter.

-> Ptr GLint

params pointing to COMPSIZE(pname) elements of type CheckedInt32.

-> IO () 

Manual page for OpenGL 2.x

glConvolutionParameterf Source

Arguments

:: GLenum

target of type ConvolutionTarget.

-> GLenum

pname of type ConvolutionParameter.

-> GLfloat

params of type CheckedFloat32.

-> IO () 

Manual page for OpenGL 2.x

glConvolutionParameterfv Source

Arguments

:: GLenum

target of type ConvolutionTarget.

-> GLenum

pname of type ConvolutionParameter.

-> Ptr GLfloat

params pointing to COMPSIZE(pname) elements of type CheckedFloat32.

-> IO () 

Manual page for OpenGL 2.x

glGetConvolutionParameteriv Source

Arguments

:: GLenum

target of type ConvolutionTarget.

-> GLenum

pname of type GetConvolutionParameterPName.

-> Ptr GLint

params pointing to COMPSIZE(pname) elements of type GLint.

-> IO () 

Manual page for OpenGL 2.x

glGetConvolutionParameterfv Source

Arguments

:: GLenum

target of type ConvolutionTarget.

-> GLenum

pname of type GetConvolutionParameterPName.

-> Ptr GLfloat

params pointing to COMPSIZE(pname) elements of type GLfloat.

-> IO () 

Manual page for OpenGL 2.x

Tokens