OpenGLRaw-2.6.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.NV.ParameterBufferObject

Contents

Description

 

Synopsis

Extension Support

gl_NV_parameter_buffer_object :: Bool Source

Is the NV_parameter_buffer_object extension supported? Note that in the presence of multiple contexts with different capabilities, this might be wrong. Use glGetNVParameterBufferObject in those cases instead.

Enums

Functions

glProgramBufferParametersIivNV Source

Arguments

:: MonadIO m 
=> GLenum

target of type ProgramTarget.

-> GLuint

bindingIndex.

-> GLuint

wordIndex.

-> GLsizei

count.

-> Ptr GLint

params pointing to count elements of type GLint.

-> m () 

glProgramBufferParametersIuivNV Source

Arguments

:: MonadIO m 
=> GLenum

target of type ProgramTarget.

-> GLuint

bindingIndex.

-> GLuint

wordIndex.

-> GLsizei

count.

-> Ptr GLuint

params pointing to count elements of type GLuint.

-> m () 

glProgramBufferParametersfvNV Source

Arguments

:: MonadIO m 
=> GLenum

target of type ProgramTarget.

-> GLuint

bindingIndex.

-> GLuint

wordIndex.

-> GLsizei

count.

-> Ptr GLfloat

params pointing to count elements of type GLfloat.

-> m ()