vulkan-utils 0.5.0 → 0.5.0.1
raw patch · 4 files changed
+86/−76 lines, 4 files
Files
- changelog.md +3/−0
- package.yaml +74/−67
- src/Vulkan/Utils/Requirements/TH.hs +2/−2
- vulkan-utils.cabal +7/−7
changelog.md view
@@ -2,6 +2,9 @@ ## WIP +## [0.5.0.1] - 2021-06-09+- Squash warning+ ## [0.5.0] - 2021-02-24 - Refactor module `Vulkan.Utils.ShaderQQ` - Remove `Vulkan.Utils.ShaderQQ`
package.yaml view
@@ -1,92 +1,99 @@ name: vulkan-utils-version: "0.5.0"+version: 0.5.0.1 synopsis: Utils for the vulkan package category: Graphics maintainer: Joe Hermaszewski <live.long.and.prosper@monoid.al> github: expipiplus1/vulkan extra-source-files:- - readme.md- - changelog.md- - package.yaml- - src/Vulkan/Utils/gl_enums.h+- readme.md+- changelog.md+- package.yaml+- src/Vulkan/Utils/gl_enums.h library: source-dirs: src c-sources: cbits/DebugCallback.c other-modules:- - Vulkan.Utils.Internal+ - Vulkan.Utils.Internal+ - Vulkan.Utils.ShaderQQ.ShaderType+ - Vulkan.Utils.ShaderQQ.Backend.Internal+ - Vulkan.Utils.ShaderQQ.Backend.Glslang.Internal+ - Vulkan.Utils.ShaderQQ.Backend.Shaderc.Internal+ - Vulkan.Utils.ShaderQQ.GLSL+ - Vulkan.Utils.ShaderQQ.HLSL+ dependencies:- - base <5- - bytestring- - containers- - dependent-map- - dependent-sum- - extra- - file-embed- - filepath- - resourcet >= 1.2.4- - template-haskell- - temporary- - text- - transformers- - typed-process- - unordered-containers- - vector- - vulkan >= 3.6.14 && < 3.11+ - base <5+ - bytestring+ - containers+ - dependent-map+ - dependent-sum+ - extra+ - file-embed+ - filepath+ - resourcet >= 1.2.4+ - template-haskell+ - temporary+ - text+ - transformers+ - typed-process+ - unordered-containers+ - vector+ - vulkan >= 3.6.14 && < 3.11 tests: doctests: main: Doctests.hs- other-modules: ""+ other-modules: '' source-dirs:- - test/doctest+ - test/doctest dependencies:- - base- - doctest- - vulkan-utils+ - base+ - doctest+ - vulkan-utils custom-setup: dependencies:- - base- - Cabal- - cabal-doctest >= 1 && <1.1+ - base+ - Cabal+ - cabal-doctest >= 1 && <1.1 ghc-options:- - -Wall+- -Wall default-extensions:- - ConstraintKinds- - DataKinds- - DefaultSignatures- - DeriveAnyClass- - DeriveFoldable- - DeriveFunctor- - DeriveTraversable- - DerivingStrategies- - DuplicateRecordFields- - FlexibleContexts- - FlexibleInstances- - GADTs- - GeneralizedNewtypeDeriving- - InstanceSigs- - LambdaCase- - MagicHash- - NamedFieldPuns- - NoMonomorphismRestriction- - OverloadedStrings- - PartialTypeSignatures- - PatternSynonyms- - PolyKinds- - QuantifiedConstraints- - RankNTypes- - RecordWildCards- - RoleAnnotations- - ScopedTypeVariables- - StandaloneDeriving- - Strict- - TupleSections- - TypeApplications- - TypeFamilyDependencies- - TypeOperators- - TypeSynonymInstances- - ViewPatterns+- ConstraintKinds+- DataKinds+- DefaultSignatures+- DeriveAnyClass+- DeriveFoldable+- DeriveFunctor+- DeriveTraversable+- DerivingStrategies+- DuplicateRecordFields+- FlexibleContexts+- FlexibleInstances+- GADTs+- GeneralizedNewtypeDeriving+- InstanceSigs+- LambdaCase+- MagicHash+- NamedFieldPuns+- NoMonomorphismRestriction+- OverloadedStrings+- PartialTypeSignatures+- PatternSynonyms+- PolyKinds+- QuantifiedConstraints+- RankNTypes+- RecordWildCards+- RoleAnnotations+- ScopedTypeVariables+- StandaloneDeriving+- Strict+- TupleSections+- TypeApplications+- TypeFamilyDependencies+- TypeOperators+- TypeSynonymInstances+- ViewPatterns
src/Vulkan/Utils/Requirements/TH.hs view
@@ -29,7 +29,7 @@ import Vulkan.Requirement import Vulkan.Utils.Internal import Vulkan.Utils.Misc-import Vulkan.Version ( pattern MAKE_VERSION )+import Vulkan.Version ( pattern MAKE_API_VERSION ) -- $setup -- >>> import Vulkan.Core11.Promoted_From_VK_KHR_multiview@@ -234,7 +234,7 @@ separator mi <- word pa <- fromMaybe 0 <$> (separator *> optional word)- pure $ Version (MAKE_VERSION ma mi pa)+ pure $ Version (MAKE_API_VERSION ma mi pa) feature = do s <- qual con
vulkan-utils.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack name: vulkan-utils-version: 0.5.0+version: 0.5.0.1 synopsis: Utils for the vulkan package category: Graphics homepage: https://github.com/expipiplus1/vulkan#readme@@ -41,20 +41,20 @@ Vulkan.Utils.Requirements Vulkan.Utils.Requirements.TH Vulkan.Utils.ShaderQQ.Backend.Glslang- Vulkan.Utils.ShaderQQ.Backend.Glslang.Internal- Vulkan.Utils.ShaderQQ.Backend.Internal Vulkan.Utils.ShaderQQ.Backend.Shaderc- Vulkan.Utils.ShaderQQ.Backend.Shaderc.Internal- Vulkan.Utils.ShaderQQ.GLSL Vulkan.Utils.ShaderQQ.GLSL.Glslang Vulkan.Utils.ShaderQQ.GLSL.Shaderc- Vulkan.Utils.ShaderQQ.HLSL Vulkan.Utils.ShaderQQ.HLSL.Glslang Vulkan.Utils.ShaderQQ.HLSL.Shaderc Vulkan.Utils.ShaderQQ.Interpolate- Vulkan.Utils.ShaderQQ.ShaderType other-modules: Vulkan.Utils.Internal+ Vulkan.Utils.ShaderQQ.ShaderType+ Vulkan.Utils.ShaderQQ.Backend.Internal+ Vulkan.Utils.ShaderQQ.Backend.Glslang.Internal+ Vulkan.Utils.ShaderQQ.Backend.Shaderc.Internal+ Vulkan.Utils.ShaderQQ.GLSL+ Vulkan.Utils.ShaderQQ.HLSL hs-source-dirs: src default-extensions: