{-# language CPP #-}
module Vulkan.Core10.Enums.InternalAllocationType (InternalAllocationType( INTERNAL_ALLOCATION_TYPE_EXECUTABLE
, ..
)) where
import Vulkan.Internal.Utils (enumReadPrec)
import Vulkan.Internal.Utils (enumShowsPrec)
import GHC.Show (showsPrec)
import Vulkan.Zero (Zero)
import Foreign.Storable (Storable)
import Data.Int (Int32)
import GHC.Read (Read(readPrec))
import GHC.Show (Show(showsPrec))
newtype InternalAllocationType = InternalAllocationType Int32
deriving newtype (InternalAllocationType -> InternalAllocationType -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: InternalAllocationType -> InternalAllocationType -> Bool
$c/= :: InternalAllocationType -> InternalAllocationType -> Bool
== :: InternalAllocationType -> InternalAllocationType -> Bool
$c== :: InternalAllocationType -> InternalAllocationType -> Bool
Eq, Eq InternalAllocationType
InternalAllocationType -> InternalAllocationType -> Bool
InternalAllocationType -> InternalAllocationType -> Ordering
InternalAllocationType
-> InternalAllocationType -> InternalAllocationType
forall a.
Eq a
-> (a -> a -> Ordering)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> a)
-> (a -> a -> a)
-> Ord a
min :: InternalAllocationType
-> InternalAllocationType -> InternalAllocationType
$cmin :: InternalAllocationType
-> InternalAllocationType -> InternalAllocationType
max :: InternalAllocationType
-> InternalAllocationType -> InternalAllocationType
$cmax :: InternalAllocationType
-> InternalAllocationType -> InternalAllocationType
>= :: InternalAllocationType -> InternalAllocationType -> Bool
$c>= :: InternalAllocationType -> InternalAllocationType -> Bool
> :: InternalAllocationType -> InternalAllocationType -> Bool
$c> :: InternalAllocationType -> InternalAllocationType -> Bool
<= :: InternalAllocationType -> InternalAllocationType -> Bool
$c<= :: InternalAllocationType -> InternalAllocationType -> Bool
< :: InternalAllocationType -> InternalAllocationType -> Bool
$c< :: InternalAllocationType -> InternalAllocationType -> Bool
compare :: InternalAllocationType -> InternalAllocationType -> Ordering
$ccompare :: InternalAllocationType -> InternalAllocationType -> Ordering
Ord, Ptr InternalAllocationType -> IO InternalAllocationType
Ptr InternalAllocationType -> Int -> IO InternalAllocationType
Ptr InternalAllocationType
-> Int -> InternalAllocationType -> IO ()
Ptr InternalAllocationType -> InternalAllocationType -> IO ()
InternalAllocationType -> Int
forall b. Ptr b -> Int -> IO InternalAllocationType
forall b. Ptr b -> Int -> InternalAllocationType -> IO ()
forall a.
(a -> Int)
-> (a -> Int)
-> (Ptr a -> Int -> IO a)
-> (Ptr a -> Int -> a -> IO ())
-> (forall b. Ptr b -> Int -> IO a)
-> (forall b. Ptr b -> Int -> a -> IO ())
-> (Ptr a -> IO a)
-> (Ptr a -> a -> IO ())
-> Storable a
poke :: Ptr InternalAllocationType -> InternalAllocationType -> IO ()
$cpoke :: Ptr InternalAllocationType -> InternalAllocationType -> IO ()
peek :: Ptr InternalAllocationType -> IO InternalAllocationType
$cpeek :: Ptr InternalAllocationType -> IO InternalAllocationType
pokeByteOff :: forall b. Ptr b -> Int -> InternalAllocationType -> IO ()
$cpokeByteOff :: forall b. Ptr b -> Int -> InternalAllocationType -> IO ()
peekByteOff :: forall b. Ptr b -> Int -> IO InternalAllocationType
$cpeekByteOff :: forall b. Ptr b -> Int -> IO InternalAllocationType
pokeElemOff :: Ptr InternalAllocationType
-> Int -> InternalAllocationType -> IO ()
$cpokeElemOff :: Ptr InternalAllocationType
-> Int -> InternalAllocationType -> IO ()
peekElemOff :: Ptr InternalAllocationType -> Int -> IO InternalAllocationType
$cpeekElemOff :: Ptr InternalAllocationType -> Int -> IO InternalAllocationType
alignment :: InternalAllocationType -> Int
$calignment :: InternalAllocationType -> Int
sizeOf :: InternalAllocationType -> Int
$csizeOf :: InternalAllocationType -> Int
Storable, InternalAllocationType
forall a. a -> Zero a
zero :: InternalAllocationType
$czero :: InternalAllocationType
Zero)
pattern $bINTERNAL_ALLOCATION_TYPE_EXECUTABLE :: InternalAllocationType
$mINTERNAL_ALLOCATION_TYPE_EXECUTABLE :: forall {r}.
InternalAllocationType -> ((# #) -> r) -> ((# #) -> r) -> r
INTERNAL_ALLOCATION_TYPE_EXECUTABLE = InternalAllocationType 0
{-# COMPLETE INTERNAL_ALLOCATION_TYPE_EXECUTABLE :: InternalAllocationType #-}
conNameInternalAllocationType :: String
conNameInternalAllocationType :: String
conNameInternalAllocationType = String
"InternalAllocationType"
enumPrefixInternalAllocationType :: String
enumPrefixInternalAllocationType :: String
enumPrefixInternalAllocationType = String
"INTERNAL_ALLOCATION_TYPE_EXECUTABLE"
showTableInternalAllocationType :: [(InternalAllocationType, String)]
showTableInternalAllocationType :: [(InternalAllocationType, String)]
showTableInternalAllocationType = [(InternalAllocationType
INTERNAL_ALLOCATION_TYPE_EXECUTABLE, String
"")]
instance Show InternalAllocationType where
showsPrec :: Int -> InternalAllocationType -> ShowS
showsPrec =
forall a i.
Eq a =>
String
-> [(a, String)]
-> String
-> (a -> i)
-> (i -> ShowS)
-> Int
-> a
-> ShowS
enumShowsPrec
String
enumPrefixInternalAllocationType
[(InternalAllocationType, String)]
showTableInternalAllocationType
String
conNameInternalAllocationType
(\(InternalAllocationType Int32
x) -> Int32
x)
(forall a. Show a => Int -> a -> ShowS
showsPrec Int
11)
instance Read InternalAllocationType where
readPrec :: ReadPrec InternalAllocationType
readPrec =
forall i a.
Read i =>
String -> [(a, String)] -> String -> (i -> a) -> ReadPrec a
enumReadPrec
String
enumPrefixInternalAllocationType
[(InternalAllocationType, String)]
showTableInternalAllocationType
String
conNameInternalAllocationType
Int32 -> InternalAllocationType
InternalAllocationType