gloss-accelerate 2.0.0.0 → 2.0.0.1
raw patch · 3 files changed
+21/−5 lines, 3 filesdep ~base
Dependency ranges changed: base
Files
- Graphics/Gloss/Accelerate/Data/Point.hs +1/−1
- README.md +12/−0
- gloss-accelerate.cabal +8/−4
Graphics/Gloss/Accelerate/Data/Point.hs view
@@ -63,7 +63,7 @@ signum (XY x y) = XY (signum x) (signum y) abs (XY x y) = XY (abs x) (abs y) negate (XY x y) = XY (negate x) (negate y)- fromInteger i = let f = fromInteger i+ fromInteger i = let f = P.fromInteger i in XY f f -- Represent points in Accelerate as a tuple
+ README.md view
@@ -0,0 +1,12 @@+gloss-accelerate+================++[](https://travis-ci.org/tmcdonell/gloss-accelerate)+[](https://hackage.haskell.org/package/gloss-accelerate)++Extras to help interface [gloss][gloss] and [accelerate][accelerate]. Refer to+the main repositories of each project for more information.++ [gloss]: https://github.com/benl23x5/gloss+ [accelerate]: https://github.com/AccelerateHS/accelerate+
gloss-accelerate.cabal view
@@ -1,5 +1,5 @@ Name: gloss-accelerate-Version: 2.0.0.0+Version: 2.0.0.1 Synopsis: Extras to interface Gloss and Accelerate Description: Extras to interface Gloss and Accelerate License: BSD3@@ -10,19 +10,23 @@ Build-type: Simple Cabal-version: >=1.10 +extra-source-files:+ README.md+ Library Exposed-modules: Graphics.Gloss.Accelerate.Data.Picture Graphics.Gloss.Accelerate.Data.Point Build-depends:- base >= 4.6 && < 4.10+ base >= 4.6 && < 4.12 , accelerate >= 0.16 , gloss >= 1.9 , gloss-rendering >= 1.9 ghc-options:- -Wall -O2+ -Wall+ -O2 default-language: Haskell2010@@ -33,7 +37,7 @@ source-repository this type: git- tag: v2.0.0.0+ tag: v2.0.0.1 location: https://github.com/tmcdonell/gloss-accelerate -- vim: nospell