gl 0.7.2 → 0.7.2.1
raw patch · 3 files changed
+6/−2 lines, 3 filesdep ~base
Dependency ranges changed: base
Files
- CHANGELOG.markdown +4/−0
- Generator.hs +1/−1
- gl.cabal +1/−1
CHANGELOG.markdown view
@@ -1,3 +1,7 @@+0.7.2.1+-------+* Switched to `stdcall` to make Windows happy.+ 0.7.2 ----- * Remove `GL_TEXTURE_BINDING` from OpenGL 4.5 and `ARB_direct_state_access` due to changes made to their specifications.
Generator.hs view
@@ -456,7 +456,7 @@ invokers :: Signature -> [Body] invokers v =- [ Code $ printf "foreign import ccall \"dynamic\" %s :: FunPtr (%s) -> %s" nd v' v'+ [ Code $ printf "foreign import stdcall \"dynamic\" %s :: FunPtr (%s) -> %s" nd v' v' , Function ni (printf "MonadIO m => FunPtr (%s) -> %s" v' v) $ printf "fp %s = liftIO (%s fp %s)" params nd params ] where
gl.cabal view
@@ -1,5 +1,5 @@ name: gl-version: 0.7.2+version: 0.7.2.1 synopsis: Complete OpenGL raw bindings description: Complete OpenGL raw bindings license: BSD3