Copyright | (c) Sven Panne 2016 |
---|---|
License | BSD3 |
Maintainer | Sven Panne <svenpanne@gmail.com> |
Stability | stable |
Portability | portable |
Safe Haskell | None |
Language | Haskell2010 |
- glGetEXTSubtexture :: MonadIO m => m Bool
- gl_EXT_subtexture :: Bool
- glTexSubImage1DEXT :: MonadIO m => GLenum -> GLint -> GLint -> GLsizei -> GLenum -> GLenum -> Ptr a -> m ()
- glTexSubImage2DEXT :: MonadIO m => GLenum -> GLint -> GLint -> GLint -> GLsizei -> GLsizei -> GLenum -> GLenum -> Ptr a -> m ()
Extension Support
glGetEXTSubtexture :: MonadIO m => m Bool Source
Is the EXT_subtexture extension supported?
gl_EXT_subtexture :: Bool Source
Is the EXT_subtexture extension supported?
Note that in the presence of multiple contexts with different capabilities,
this might be wrong. Use glGetEXTSubtexture
in those cases instead.
Functions
:: MonadIO m | |
=> GLenum |
|
-> GLint |
|
-> GLint |
|
-> GLsizei |
|
-> GLenum |
|
-> GLenum |
|
-> Ptr a |
|
-> m () |
This command is an alias for glTexSubImage1D
.
:: MonadIO m | |
=> GLenum |
|
-> GLint |
|
-> GLint |
|
-> GLint |
|
-> GLsizei |
|
-> GLsizei |
|
-> GLenum |
|
-> GLenum |
|
-> Ptr a |
|
-> m () |
This command is an alias for glTexSubImage2D
.