{-# language CPP #-}
module Vulkan.Core10.Enums.FrontFace (FrontFace( FRONT_FACE_COUNTER_CLOCKWISE
, FRONT_FACE_CLOCKWISE
, ..
)) 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 FrontFace = FrontFace Int32
deriving newtype (FrontFace -> FrontFace -> Bool
(FrontFace -> FrontFace -> Bool)
-> (FrontFace -> FrontFace -> Bool) -> Eq FrontFace
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: FrontFace -> FrontFace -> Bool
$c/= :: FrontFace -> FrontFace -> Bool
== :: FrontFace -> FrontFace -> Bool
$c== :: FrontFace -> FrontFace -> Bool
Eq, Eq FrontFace
Eq FrontFace =>
(FrontFace -> FrontFace -> Ordering)
-> (FrontFace -> FrontFace -> Bool)
-> (FrontFace -> FrontFace -> Bool)
-> (FrontFace -> FrontFace -> Bool)
-> (FrontFace -> FrontFace -> Bool)
-> (FrontFace -> FrontFace -> FrontFace)
-> (FrontFace -> FrontFace -> FrontFace)
-> Ord FrontFace
FrontFace -> FrontFace -> Bool
FrontFace -> FrontFace -> Ordering
FrontFace -> FrontFace -> FrontFace
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 :: FrontFace -> FrontFace -> FrontFace
$cmin :: FrontFace -> FrontFace -> FrontFace
max :: FrontFace -> FrontFace -> FrontFace
$cmax :: FrontFace -> FrontFace -> FrontFace
>= :: FrontFace -> FrontFace -> Bool
$c>= :: FrontFace -> FrontFace -> Bool
> :: FrontFace -> FrontFace -> Bool
$c> :: FrontFace -> FrontFace -> Bool
<= :: FrontFace -> FrontFace -> Bool
$c<= :: FrontFace -> FrontFace -> Bool
< :: FrontFace -> FrontFace -> Bool
$c< :: FrontFace -> FrontFace -> Bool
compare :: FrontFace -> FrontFace -> Ordering
$ccompare :: FrontFace -> FrontFace -> Ordering
$cp1Ord :: Eq FrontFace
Ord, Ptr b -> Int -> IO FrontFace
Ptr b -> Int -> FrontFace -> IO ()
Ptr FrontFace -> IO FrontFace
Ptr FrontFace -> Int -> IO FrontFace
Ptr FrontFace -> Int -> FrontFace -> IO ()
Ptr FrontFace -> FrontFace -> IO ()
FrontFace -> Int
(FrontFace -> Int)
-> (FrontFace -> Int)
-> (Ptr FrontFace -> Int -> IO FrontFace)
-> (Ptr FrontFace -> Int -> FrontFace -> IO ())
-> (forall b. Ptr b -> Int -> IO FrontFace)
-> (forall b. Ptr b -> Int -> FrontFace -> IO ())
-> (Ptr FrontFace -> IO FrontFace)
-> (Ptr FrontFace -> FrontFace -> IO ())
-> Storable FrontFace
forall b. Ptr b -> Int -> IO FrontFace
forall b. Ptr b -> Int -> FrontFace -> 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 FrontFace -> FrontFace -> IO ()
$cpoke :: Ptr FrontFace -> FrontFace -> IO ()
peek :: Ptr FrontFace -> IO FrontFace
$cpeek :: Ptr FrontFace -> IO FrontFace
pokeByteOff :: Ptr b -> Int -> FrontFace -> IO ()
$cpokeByteOff :: forall b. Ptr b -> Int -> FrontFace -> IO ()
peekByteOff :: Ptr b -> Int -> IO FrontFace
$cpeekByteOff :: forall b. Ptr b -> Int -> IO FrontFace
pokeElemOff :: Ptr FrontFace -> Int -> FrontFace -> IO ()
$cpokeElemOff :: Ptr FrontFace -> Int -> FrontFace -> IO ()
peekElemOff :: Ptr FrontFace -> Int -> IO FrontFace
$cpeekElemOff :: Ptr FrontFace -> Int -> IO FrontFace
alignment :: FrontFace -> Int
$calignment :: FrontFace -> Int
sizeOf :: FrontFace -> Int
$csizeOf :: FrontFace -> Int
Storable, FrontFace
FrontFace -> Zero FrontFace
forall a. a -> Zero a
zero :: FrontFace
$czero :: FrontFace
Zero)
pattern $bFRONT_FACE_COUNTER_CLOCKWISE :: FrontFace
$mFRONT_FACE_COUNTER_CLOCKWISE :: forall r. FrontFace -> (Void# -> r) -> (Void# -> r) -> r
FRONT_FACE_COUNTER_CLOCKWISE = FrontFace 0
pattern $bFRONT_FACE_CLOCKWISE :: FrontFace
$mFRONT_FACE_CLOCKWISE :: forall r. FrontFace -> (Void# -> r) -> (Void# -> r) -> r
FRONT_FACE_CLOCKWISE = FrontFace 1
{-# complete FRONT_FACE_COUNTER_CLOCKWISE,
FRONT_FACE_CLOCKWISE :: FrontFace #-}
conNameFrontFace :: String
conNameFrontFace :: String
conNameFrontFace = "FrontFace"
enumPrefixFrontFace :: String
enumPrefixFrontFace :: String
enumPrefixFrontFace = "FRONT_FACE_C"
showTableFrontFace :: [(FrontFace, String)]
showTableFrontFace :: [(FrontFace, String)]
showTableFrontFace = [(FrontFace
FRONT_FACE_COUNTER_CLOCKWISE, "OUNTER_CLOCKWISE"), (FrontFace
FRONT_FACE_CLOCKWISE, "LOCKWISE")]
instance Show FrontFace where
showsPrec :: Int -> FrontFace -> ShowS
showsPrec =
String
-> [(FrontFace, String)]
-> String
-> (FrontFace -> Int32)
-> (Int32 -> ShowS)
-> Int
-> FrontFace
-> ShowS
forall a i.
Eq a =>
String
-> [(a, String)]
-> String
-> (a -> i)
-> (i -> ShowS)
-> Int
-> a
-> ShowS
enumShowsPrec String
enumPrefixFrontFace [(FrontFace, String)]
showTableFrontFace String
conNameFrontFace (\(FrontFace x :: Int32
x) -> Int32
x) (Int -> Int32 -> ShowS
forall a. Show a => Int -> a -> ShowS
showsPrec 11)
instance Read FrontFace where
readPrec :: ReadPrec FrontFace
readPrec = String
-> [(FrontFace, String)]
-> String
-> (Int32 -> FrontFace)
-> ReadPrec FrontFace
forall i a.
Read i =>
String -> [(a, String)] -> String -> (i -> a) -> ReadPrec a
enumReadPrec String
enumPrefixFrontFace [(FrontFace, String)]
showTableFrontFace String
conNameFrontFace Int32 -> FrontFace
FrontFace