luminance 0.9 → 0.9.1
raw patch · 3 files changed
+6/−2 lines, 3 files
Files
- CHANGELOG.md +4/−0
- luminance.cabal +1/−1
- src/Graphics/Luminance/Core/Shader/Program.hs +1/−1
CHANGELOG.md view
@@ -1,3 +1,7 @@+### 0.9.1++- Made `Program` an instance of `Eq` and `Show`.+ ## 0.9 - Dropped `gl32` for `gl33`.
luminance.cabal view
@@ -1,5 +1,5 @@ name: luminance-version: 0.9+version: 0.9.1 synopsis: Type-safe, type-level and stateless graphics framework description: This package exposes several modules to work with /GPUs/ in a stateless and type-safe way. Currently, it uses OpenGL as backend hardware technology but
src/Graphics/Luminance/Core/Shader/Program.hs view
@@ -62,7 +62,7 @@ -- Shader program -------------------------------------------------------------- -- |Shader program.-newtype Program = Program { programID :: GLuint }+newtype Program = Program { programID :: GLuint } deriving (Eq,Show) -- |Create a new shader 'Program'. --