gpu-vulkan 0.1.0.158 → 0.1.0.159
raw patch · 3 files changed
+5/−5 lines, 3 filesPVP: minor bump suggested
API additions: PVP suggests at least a minor version bump
API changes (from Hackage documentation)
+ Gpu.Vulkan.PhysicalDevice: descriptorIndexingFeaturesZero :: forall (mn :: Maybe Type). M mn -> DescriptorIndexingFeatures mn
+ Gpu.Vulkan.PhysicalDevice: vulkan12FeaturesZero :: forall (mn :: Maybe Type). M mn -> Vulkan12Features mn
+ Gpu.Vulkan.PhysicalDevice: vulkan13FeaturesZero :: forall (mn :: Maybe Type). M mn -> Vulkan13Features mn
Files
gpu-vulkan.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack name: gpu-vulkan-version: 0.1.0.158+version: 0.1.0.159 synopsis: Vulkan library description: Please see the README on GitHub at <https://github.com/YoshikuniJujo/gpu-vulkan#readme> category: GPU
src/Gpu/Vulkan/PhysicalDevice.hs view
@@ -37,9 +37,10 @@ module Gpu.Vulkan.PhysicalDevice.Enum, Limits(..), Features(..),- Vulkan12Features(..), Vulkan12FeaturesNoNext(..),- Vulkan13Features(..), Vulkan13FeaturesNoNext(..),- DescriptorIndexingFeatures(..), DescriptorIndexingFeaturesNoNext(..)+ Vulkan12Features(..), Vulkan12FeaturesNoNext(..), vulkan12FeaturesZero,+ Vulkan13Features(..), Vulkan13FeaturesNoNext(..), vulkan13FeaturesZero,+ DescriptorIndexingFeatures(..), DescriptorIndexingFeaturesNoNext(..),+ descriptorIndexingFeaturesZero ) where
src/Gpu/Vulkan/QueryPool.hs view
@@ -36,7 +36,6 @@ import Gpu.Vulkan.AllocationCallbacks qualified as AllocationCallbacks import Gpu.Vulkan.AllocationCallbacks.Type qualified as AllocationCallbacks import Gpu.Vulkan.PhysicalDevice qualified as PhysicalDevice-import Gpu.Vulkan.PhysicalDevice.Struct qualified as PhysicalDevice import Gpu.Vulkan.Device.Type qualified as Device import Gpu.Vulkan.Query qualified as Q import Gpu.Vulkan.QueryPool.Type