packages feed

gl 0.5 → 0.6

raw patch · 4 files changed

+10/−3 lines, 4 files

Files

CHANGELOG.markdown view
@@ -1,3 +1,8 @@+0.6+---+* Stopped exporting all extensions from `Graphics.GL`. You'll need to import `Graphics.GL.Ext` as well.+* Added exports for `GLhalf` and `GLhalfARB`+ 0.5 --- * Haddock links to the OpenGL ES 2 registry
gl.cabal view
@@ -1,5 +1,5 @@ name:          gl-version:       0.5+version:       0.6 synopsis:      Complete OpenGL raw bindings description:   Complete OpenGL raw bindings license:       BSD3
src/Graphics/GL.hs view
@@ -10,11 +10,9 @@ module Graphics.GL (     module Graphics.GL.Core45   , module Graphics.GL.Embedded31-  , module Graphics.GL.Ext   , module Graphics.GL.Types ) where  import Graphics.GL.Core45 import Graphics.GL.Embedded31-import Graphics.GL.Ext import Graphics.GL.Types
src/Graphics/GL/Types.hs view
@@ -35,6 +35,8 @@   , GLenum   , GLfixed   , GLfloat+  , GLhalf+  , GLhalfARB   , GLhalfNV   , GLhandleARB   , GLint@@ -134,6 +136,8 @@ type GLenum           = Word32 type GLfixed          = Fixed type GLfloat          = Float+type GLhalf           = Half+type GLhalfARB        = Half type GLhalfNV         = Half type GLint            = Int32 type GLint64          = Int64