OpenGLRaw-2.5.4.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.EXT.Texture3D

Contents

Description

The EXT_texture3D extension.

Synopsis

Enums

Functions

glTexImage3DEXT Source

Arguments

:: MonadIO m 
=> GLenum

target of type [TextureTarget](Graphics-Rendering-OpenGL-Raw-Groups.html#TextureTarget).

-> GLint

level of type CheckedInt32.

-> GLenum

internalformat of type [InternalFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#InternalFormat).

-> GLsizei

width.

-> GLsizei

height.

-> GLsizei

depth.

-> GLint

border of type CheckedInt32.

-> GLenum

format of type [PixelFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#PixelFormat).

-> GLenum

type of type [PixelType](Graphics-Rendering-OpenGL-Raw-Groups.html#PixelType).

-> Ptr a

pixels pointing to COMPSIZE(format,type,width,height,depth) elements of type a.

-> m () 

glTexSubImage3DEXT Source

Arguments

:: MonadIO m 
=> GLenum

target of type [TextureTarget](Graphics-Rendering-OpenGL-Raw-Groups.html#TextureTarget).

-> GLint

level of type CheckedInt32.

-> GLint

xoffset of type CheckedInt32.

-> GLint

yoffset of type CheckedInt32.

-> GLint

zoffset of type CheckedInt32.

-> GLsizei

width.

-> GLsizei

height.

-> GLsizei

depth.

-> GLenum

format of type [PixelFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#PixelFormat).

-> GLenum

type of type [PixelType](Graphics-Rendering-OpenGL-Raw-Groups.html#PixelType).

-> Ptr a

pixels pointing to COMPSIZE(format,type,width,height,depth) elements of type a.

-> m ()