{-# language CPP #-}
-- | = Name
--
-- VK_EXT_non_seamless_cube_map - device extension
--
-- == VK_EXT_non_seamless_cube_map
--
-- [__Name String__]
--     @VK_EXT_non_seamless_cube_map@
--
-- [__Extension Type__]
--     Device extension
--
-- [__Registered Extension Number__]
--     423
--
-- [__Revision__]
--     1
--
-- [__Extension and Version Dependencies__]
--
--     -   Requires support for Vulkan 1.0
--
-- [__Special Uses__]
--
--     -   <https://www.khronos.org/registry/vulkan/specs/1.2-extensions/html/vkspec.html#extendingvulkan-compatibility-specialuse D3D support>
--
--     -   <https://www.khronos.org/registry/vulkan/specs/1.2-extensions/html/vkspec.html#extendingvulkan-compatibility-specialuse OpenGL \/ ES support>
--
-- [__Contact__]
--
--     -   Georg Lehmann
--         <https://github.com/KhronosGroup/Vulkan-Docs/issues/new?body=[VK_EXT_non_seamless_cube_map] @DadSchoorse%0A*Here describe the issue or question you have about the VK_EXT_non_seamless_cube_map extension* >
--
-- [__Extension Proposal__]
--     <https://github.com/KhronosGroup/Vulkan-Docs/tree/main/proposals/VK_EXT_non_seamless_cube_map.adoc VK_EXT_non_seamless_cube_map>
--
-- == Other Extension Metadata
--
-- [__Last Modified Date__]
--     2021-09-04
--
-- [__IP Status__]
--     No known IP claims.
--
-- [__Contributors__]
--
--     -   Georg Lehmann
--
-- == Description
--
-- This extension provides functionality to disable
-- <https://registry.khronos.org/vulkan/specs/1.3-extensions/html/vkspec.html#textures-cubemapedge cube map edge handling>
-- on a per sampler level which matches the behavior of other graphics
-- APIs.
--
-- This extension may be useful for building translation layers for those
-- APIs or for porting applications that rely on this cube map behavior.
--
-- == New Structures
--
-- -   Extending
--     'Vulkan.Core11.Promoted_From_VK_KHR_get_physical_device_properties2.PhysicalDeviceFeatures2',
--     'Vulkan.Core10.Device.DeviceCreateInfo':
--
--     -   'PhysicalDeviceNonSeamlessCubeMapFeaturesEXT'
--
-- == New Enum Constants
--
-- -   'EXT_NON_SEAMLESS_CUBE_MAP_EXTENSION_NAME'
--
-- -   'EXT_NON_SEAMLESS_CUBE_MAP_SPEC_VERSION'
--
-- -   Extending
--     'Vulkan.Core10.Enums.SamplerCreateFlagBits.SamplerCreateFlagBits':
--
--     -   'Vulkan.Core10.Enums.SamplerCreateFlagBits.SAMPLER_CREATE_NON_SEAMLESS_CUBE_MAP_BIT_EXT'
--
-- -   Extending 'Vulkan.Core10.Enums.StructureType.StructureType':
--
--     -   'Vulkan.Core10.Enums.StructureType.STRUCTURE_TYPE_PHYSICAL_DEVICE_NON_SEAMLESS_CUBE_MAP_FEATURES_EXT'
--
-- == Version History
--
-- -   Revision 1, 2021-09-04 (Georg Lehmann)
--
--     -   First Version
--
-- == See Also
--
-- 'PhysicalDeviceNonSeamlessCubeMapFeaturesEXT'
--
-- == Document Notes
--
-- For more information, see the
-- <https://registry.khronos.org/vulkan/specs/1.3-extensions/html/vkspec.html#VK_EXT_non_seamless_cube_map Vulkan Specification>
--
-- This page is a generated document. Fixes and changes should be made to
-- the generator scripts, not directly.
module Vulkan.Extensions.VK_EXT_non_seamless_cube_map  ( PhysicalDeviceNonSeamlessCubeMapFeaturesEXT(..)
                                                       , EXT_NON_SEAMLESS_CUBE_MAP_SPEC_VERSION
                                                       , pattern EXT_NON_SEAMLESS_CUBE_MAP_SPEC_VERSION
                                                       , EXT_NON_SEAMLESS_CUBE_MAP_EXTENSION_NAME
                                                       , pattern EXT_NON_SEAMLESS_CUBE_MAP_EXTENSION_NAME
                                                       ) where

import Foreign.Marshal.Alloc (allocaBytes)
import Foreign.Ptr (nullPtr)
import Foreign.Ptr (plusPtr)
import Vulkan.CStruct (FromCStruct)
import Vulkan.CStruct (FromCStruct(..))
import Vulkan.CStruct (ToCStruct)
import Vulkan.CStruct (ToCStruct(..))
import Vulkan.Zero (Zero(..))
import Data.String (IsString)
import Data.Typeable (Typeable)
import Foreign.Storable (Storable)
import Foreign.Storable (Storable(peek))
import Foreign.Storable (Storable(poke))
import qualified Foreign.Storable (Storable(..))
import GHC.Generics (Generic)
import Foreign.Ptr (Ptr)
import Data.Kind (Type)
import Vulkan.Core10.FundamentalTypes (bool32ToBool)
import Vulkan.Core10.FundamentalTypes (boolToBool32)
import Vulkan.Core10.FundamentalTypes (Bool32)
import Vulkan.Core10.Enums.StructureType (StructureType)
import Vulkan.Core10.Enums.StructureType (StructureType(STRUCTURE_TYPE_PHYSICAL_DEVICE_NON_SEAMLESS_CUBE_MAP_FEATURES_EXT))
-- | VkPhysicalDeviceNonSeamlessCubeMapFeaturesEXT - Structure describing
-- features to disable seamless cube maps
--
-- = Members
--
-- This structure describes the following feature:
--
-- = Description
--
-- If the 'PhysicalDeviceNonSeamlessCubeMapFeaturesEXT' structure is
-- included in the @pNext@ chain of the
-- 'Vulkan.Core11.Promoted_From_VK_KHR_get_physical_device_properties2.PhysicalDeviceFeatures2'
-- structure passed to
-- 'Vulkan.Core11.Promoted_From_VK_KHR_get_physical_device_properties2.getPhysicalDeviceFeatures2',
-- it is filled in to indicate whether each corresponding feature is
-- supported. 'PhysicalDeviceNonSeamlessCubeMapFeaturesEXT' /can/ also be
-- used in the @pNext@ chain of 'Vulkan.Core10.Device.DeviceCreateInfo' to
-- selectively enable these features.
--
-- == Valid Usage (Implicit)
--
-- = See Also
--
-- <https://www.khronos.org/registry/vulkan/specs/1.2-extensions/html/vkspec.html#VK_EXT_non_seamless_cube_map VK_EXT_non_seamless_cube_map>,
-- 'Vulkan.Core10.FundamentalTypes.Bool32',
-- 'Vulkan.Core10.Enums.StructureType.StructureType'
data PhysicalDeviceNonSeamlessCubeMapFeaturesEXT = PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
  { -- | #features-nonSeamlessCubeMap# @nonSeamlessCubeMap@ indicates that the
    -- implementation supports
    -- 'Vulkan.Core10.Enums.SamplerCreateFlagBits.SAMPLER_CREATE_NON_SEAMLESS_CUBE_MAP_BIT_EXT'.
    PhysicalDeviceNonSeamlessCubeMapFeaturesEXT -> Bool
nonSeamlessCubeMap :: Bool }
  deriving (Typeable, PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
-> PhysicalDeviceNonSeamlessCubeMapFeaturesEXT -> Bool
(PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
 -> PhysicalDeviceNonSeamlessCubeMapFeaturesEXT -> Bool)
-> (PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
    -> PhysicalDeviceNonSeamlessCubeMapFeaturesEXT -> Bool)
-> Eq PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
-> PhysicalDeviceNonSeamlessCubeMapFeaturesEXT -> Bool
$c/= :: PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
-> PhysicalDeviceNonSeamlessCubeMapFeaturesEXT -> Bool
== :: PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
-> PhysicalDeviceNonSeamlessCubeMapFeaturesEXT -> Bool
$c== :: PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
-> PhysicalDeviceNonSeamlessCubeMapFeaturesEXT -> Bool
Eq)
#if defined(GENERIC_INSTANCES)
deriving instance Generic (PhysicalDeviceNonSeamlessCubeMapFeaturesEXT)
#endif
deriving instance Show PhysicalDeviceNonSeamlessCubeMapFeaturesEXT

instance ToCStruct PhysicalDeviceNonSeamlessCubeMapFeaturesEXT where
  withCStruct :: forall b.
PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
-> (Ptr PhysicalDeviceNonSeamlessCubeMapFeaturesEXT -> IO b)
-> IO b
withCStruct PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
x Ptr PhysicalDeviceNonSeamlessCubeMapFeaturesEXT -> IO b
f = Int
-> (Ptr PhysicalDeviceNonSeamlessCubeMapFeaturesEXT -> IO b)
-> IO b
forall a b. Int -> (Ptr a -> IO b) -> IO b
allocaBytes Int
24 ((Ptr PhysicalDeviceNonSeamlessCubeMapFeaturesEXT -> IO b) -> IO b)
-> (Ptr PhysicalDeviceNonSeamlessCubeMapFeaturesEXT -> IO b)
-> IO b
forall a b. (a -> b) -> a -> b
$ \Ptr PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
p -> Ptr PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
-> PhysicalDeviceNonSeamlessCubeMapFeaturesEXT -> IO b -> IO b
forall a b. ToCStruct a => Ptr a -> a -> IO b -> IO b
pokeCStruct Ptr PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
p PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
x (Ptr PhysicalDeviceNonSeamlessCubeMapFeaturesEXT -> IO b
f Ptr PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
p)
  pokeCStruct :: forall b.
Ptr PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
-> PhysicalDeviceNonSeamlessCubeMapFeaturesEXT -> IO b -> IO b
pokeCStruct Ptr PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
p PhysicalDeviceNonSeamlessCubeMapFeaturesEXT{Bool
nonSeamlessCubeMap :: Bool
$sel:nonSeamlessCubeMap:PhysicalDeviceNonSeamlessCubeMapFeaturesEXT :: PhysicalDeviceNonSeamlessCubeMapFeaturesEXT -> Bool
..} IO b
f = do
    Ptr StructureType -> StructureType -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
p Ptr PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
-> Int -> Ptr StructureType
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr StructureType)) (StructureType
STRUCTURE_TYPE_PHYSICAL_DEVICE_NON_SEAMLESS_CUBE_MAP_FEATURES_EXT)
    Ptr (Ptr ()) -> Ptr () -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
p Ptr PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
-> Int -> Ptr (Ptr ())
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr (Ptr ()))) (Ptr ()
forall a. Ptr a
nullPtr)
    Ptr Bool32 -> Bool32 -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
p Ptr PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
-> Int -> Ptr Bool32
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
16 :: Ptr Bool32)) (Bool -> Bool32
boolToBool32 (Bool
nonSeamlessCubeMap))
    IO b
f
  cStructSize :: Int
cStructSize = Int
24
  cStructAlignment :: Int
cStructAlignment = Int
8
  pokeZeroCStruct :: forall b.
Ptr PhysicalDeviceNonSeamlessCubeMapFeaturesEXT -> IO b -> IO b
pokeZeroCStruct Ptr PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
p IO b
f = do
    Ptr StructureType -> StructureType -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
p Ptr PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
-> Int -> Ptr StructureType
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr StructureType)) (StructureType
STRUCTURE_TYPE_PHYSICAL_DEVICE_NON_SEAMLESS_CUBE_MAP_FEATURES_EXT)
    Ptr (Ptr ()) -> Ptr () -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
p Ptr PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
-> Int -> Ptr (Ptr ())
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr (Ptr ()))) (Ptr ()
forall a. Ptr a
nullPtr)
    Ptr Bool32 -> Bool32 -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
p Ptr PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
-> Int -> Ptr Bool32
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
16 :: Ptr Bool32)) (Bool -> Bool32
boolToBool32 (Bool
forall a. Zero a => a
zero))
    IO b
f

instance FromCStruct PhysicalDeviceNonSeamlessCubeMapFeaturesEXT where
  peekCStruct :: Ptr PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
-> IO PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
peekCStruct Ptr PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
p = do
    Bool32
nonSeamlessCubeMap <- forall a. Storable a => Ptr a -> IO a
peek @Bool32 ((Ptr PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
p Ptr PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
-> Int -> Ptr Bool32
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
16 :: Ptr Bool32))
    PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
-> IO PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
forall (f :: * -> *) a. Applicative f => a -> f a
pure (PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
 -> IO PhysicalDeviceNonSeamlessCubeMapFeaturesEXT)
-> PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
-> IO PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
forall a b. (a -> b) -> a -> b
$ Bool -> PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
             (Bool32 -> Bool
bool32ToBool Bool32
nonSeamlessCubeMap)

instance Storable PhysicalDeviceNonSeamlessCubeMapFeaturesEXT where
  sizeOf :: PhysicalDeviceNonSeamlessCubeMapFeaturesEXT -> Int
sizeOf ~PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
_ = Int
24
  alignment :: PhysicalDeviceNonSeamlessCubeMapFeaturesEXT -> Int
alignment ~PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
_ = Int
8
  peek :: Ptr PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
-> IO PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
peek = Ptr PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
-> IO PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
forall a. FromCStruct a => Ptr a -> IO a
peekCStruct
  poke :: Ptr PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
-> PhysicalDeviceNonSeamlessCubeMapFeaturesEXT -> IO ()
poke Ptr PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
ptr PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
poked = Ptr PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
-> PhysicalDeviceNonSeamlessCubeMapFeaturesEXT -> IO () -> IO ()
forall a b. ToCStruct a => Ptr a -> a -> IO b -> IO b
pokeCStruct Ptr PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
ptr PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
poked (() -> IO ()
forall (f :: * -> *) a. Applicative f => a -> f a
pure ())

instance Zero PhysicalDeviceNonSeamlessCubeMapFeaturesEXT where
  zero :: PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
zero = Bool -> PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
PhysicalDeviceNonSeamlessCubeMapFeaturesEXT
           Bool
forall a. Zero a => a
zero


type EXT_NON_SEAMLESS_CUBE_MAP_SPEC_VERSION = 1

-- No documentation found for TopLevel "VK_EXT_NON_SEAMLESS_CUBE_MAP_SPEC_VERSION"
pattern EXT_NON_SEAMLESS_CUBE_MAP_SPEC_VERSION :: forall a . Integral a => a
pattern $bEXT_NON_SEAMLESS_CUBE_MAP_SPEC_VERSION :: forall a. Integral a => a
$mEXT_NON_SEAMLESS_CUBE_MAP_SPEC_VERSION :: forall {r} {a}.
Integral a =>
a -> (Void# -> r) -> (Void# -> r) -> r
EXT_NON_SEAMLESS_CUBE_MAP_SPEC_VERSION = 1


type EXT_NON_SEAMLESS_CUBE_MAP_EXTENSION_NAME = "VK_EXT_non_seamless_cube_map"

-- No documentation found for TopLevel "VK_EXT_NON_SEAMLESS_CUBE_MAP_EXTENSION_NAME"
pattern EXT_NON_SEAMLESS_CUBE_MAP_EXTENSION_NAME :: forall a . (Eq a, IsString a) => a
pattern $bEXT_NON_SEAMLESS_CUBE_MAP_EXTENSION_NAME :: forall a. (Eq a, IsString a) => a
$mEXT_NON_SEAMLESS_CUBE_MAP_EXTENSION_NAME :: forall {r} {a}.
(Eq a, IsString a) =>
a -> (Void# -> r) -> (Void# -> r) -> r
EXT_NON_SEAMLESS_CUBE_MAP_EXTENSION_NAME = "VK_EXT_non_seamless_cube_map"