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

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

Graphics.GL.AMD.DebugOutput

Contents

Description

 

Synopsis

Extension Support

glGetAMDDebugOutput :: MonadIO m => m Bool Source #

Is the AMD_debug_output extension supported?

gl_AMD_debug_output :: Bool Source #

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

Enums

Functions

glDebugMessageCallbackAMD Source #

Arguments

:: MonadIO m 
=> GLDEBUGPROCAMD

callback.

-> Ptr a

userParam.

-> m () 

glDebugMessageEnableAMD Source #

Arguments

:: MonadIO m 
=> GLenum

category.

-> GLenum

severity of type DebugSeverity.

-> GLsizei

count.

-> Ptr GLuint

ids pointing to count elements of type GLuint.

-> GLboolean

enabled of type Boolean.

-> m () 

glDebugMessageInsertAMD Source #

Arguments

:: MonadIO m 
=> GLenum

category.

-> GLenum

severity of type DebugSeverity.

-> GLuint

id.

-> GLsizei

length.

-> Ptr GLchar

buf pointing to length elements of type GLchar.

-> m () 

glGetDebugMessageLogAMD Source #

Arguments

:: MonadIO m 
=> GLuint

count.

-> GLsizei

bufsize.

-> Ptr GLenum

categories pointing to count elements of type GLenum.

-> Ptr GLuint

severities pointing to count elements of type DebugSeverity.

-> Ptr GLuint

ids pointing to count elements of type GLuint.

-> Ptr GLsizei

lengths pointing to count elements of type GLsizei.

-> Ptr GLchar

message pointing to bufsize elements of type GLchar.

-> m GLuint