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

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

Graphics.Rendering.OpenGL.Raw.ARB.SamplerObjects

Contents

Description

The ARB_sampler_objects extension.

Synopsis

Enums

Functions

glBindSampler Source

Arguments

:: GLuint

unit.

-> GLuint

sampler.

-> IO () 

Manual pages for OpenGL 3.x or OpenGL 4.x

glDeleteSamplers Source

Arguments

:: GLsizei

count.

-> Ptr GLuint

samplers pointing to count elements of type GLuint.

-> IO () 

Manual pages for OpenGL 3.x or OpenGL 4.x

glGenSamplers Source

Arguments

:: GLsizei

count.

-> Ptr GLuint

samplers pointing to count elements of type GLuint.

-> IO () 

Manual pages for OpenGL 3.x or OpenGL 4.x

glGetSamplerParameterIiv Source

Arguments

:: GLuint

sampler.

-> GLenum

pname.

-> Ptr GLint

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

-> IO () 

Manual pages for OpenGL 3.x or OpenGL 4.x

glGetSamplerParameterIuiv Source

Arguments

:: GLuint

sampler.

-> GLenum

pname.

-> Ptr GLuint

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

-> IO () 

Manual pages for OpenGL 3.x or OpenGL 4.x

glGetSamplerParameterfv Source

Arguments

:: GLuint

sampler.

-> GLenum

pname.

-> Ptr GLfloat

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

-> IO () 

Manual pages for OpenGL 3.x or OpenGL 4.x

glGetSamplerParameteriv Source

Arguments

:: GLuint

sampler.

-> GLenum

pname.

-> Ptr GLint

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

-> IO () 

Manual pages for OpenGL 3.x or OpenGL 4.x

glIsSampler Source

Arguments

:: GLuint

sampler.

-> IO GLboolean

of type Boolean.

Manual pages for OpenGL 3.x or OpenGL 4.x

glSamplerParameterIiv Source

Arguments

:: GLuint

sampler.

-> GLenum

pname.

-> Ptr GLint

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

-> IO () 

Manual pages for OpenGL 3.x or OpenGL 4.x

glSamplerParameterIuiv Source

Arguments

:: GLuint

sampler.

-> GLenum

pname.

-> Ptr GLuint

param pointing to COMPSIZE(pname) elements of type GLuint.

-> IO () 

Manual pages for OpenGL 3.x or OpenGL 4.x

glSamplerParameterf Source

Arguments

:: GLuint

sampler.

-> GLenum

pname.

-> GLfloat

param.

-> IO () 

Manual pages for OpenGL 3.x or OpenGL 4.x

glSamplerParameterfv Source

Arguments

:: GLuint

sampler.

-> GLenum

pname.

-> Ptr GLfloat

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

-> IO () 

Manual pages for OpenGL 3.x or OpenGL 4.x

glSamplerParameteri Source

Arguments

:: GLuint

sampler.

-> GLenum

pname.

-> GLint

param.

-> IO () 

Manual pages for OpenGL 3.x or OpenGL 4.x

glSamplerParameteriv Source

Arguments

:: GLuint

sampler.

-> GLenum

pname.

-> Ptr GLint

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

-> IO () 

Manual pages for OpenGL 3.x or OpenGL 4.x