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

Portabilityportable
Stabilitystable
MaintainerSven Panne <svenpanne@gmail.com>
Safe HaskellSafe-Inferred

Graphics.Rendering.OpenGL.Raw.GetProcAddress

Description

This module offers a portable way to retrieve OpenGL extension entries, providing a portability layer upon platform-specific mechanisms like glXGetProcAddress, wglGetProcAddress or NSAddressOfSymbol.

Synopsis

Documentation

getProcAddress :: String -> IO (FunPtr a)Source

Retrieve an OpenGL extension entry by name. Returns nullFunPtr when no extension entry with the given name was found.

getProcAddressWithSuffixes :: String -> [String] -> IO (FunPtr a)Source

Retrieve an OpenGL extension entry by name, trying a list of name suffixes in the given order. Returns nullFunPtr when no extension entry with the given name plus any of the suffixes was found.