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

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

Graphics.GL.ARB.ShadingLanguageInclude

Contents

Description

 

Synopsis

Extension Support

gl_ARB_shading_language_include :: Bool Source

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

Enums

Functions

glCompileShaderIncludeARB Source

Arguments

:: MonadIO m 
=> GLuint

shader.

-> GLsizei

count.

-> Ptr (Ptr GLchar)

path pointing to count elements of type Ptr GLchar.

-> Ptr GLint

length pointing to count elements of type GLint.

-> m () 

glDeleteNamedStringARB Source

Arguments

:: MonadIO m 
=> GLint

namelen.

-> Ptr GLchar

name pointing to namelen elements of type GLchar.

-> m () 

glGetNamedStringARB Source

Arguments

:: MonadIO m 
=> GLint

namelen.

-> Ptr GLchar

name pointing to namelen elements of type GLchar.

-> GLsizei

bufSize.

-> Ptr GLint

stringlen pointing to 1 element of type GLint.

-> Ptr GLchar

string pointing to bufSize elements of type GLchar.

-> m () 

glGetNamedStringivARB Source

Arguments

:: MonadIO m 
=> GLint

namelen.

-> Ptr GLchar

name pointing to namelen elements of type GLchar.

-> GLenum

pname.

-> Ptr GLint

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

-> m () 

glIsNamedStringARB Source

Arguments

:: MonadIO m 
=> GLint

namelen.

-> Ptr GLchar

name pointing to namelen elements of type GLchar.

-> m GLboolean

of type Boolean.

glNamedStringARB Source

Arguments

:: MonadIO m 
=> GLenum

type.

-> GLint

namelen.

-> Ptr GLchar

name pointing to namelen elements of type GLchar.

-> GLint

stringlen.

-> Ptr GLchar

string pointing to stringlen elements of type GLchar.

-> m ()