{-# language CPP #-}
module Vulkan.Core10.Enums.PolygonMode (PolygonMode( POLYGON_MODE_FILL
, POLYGON_MODE_LINE
, POLYGON_MODE_POINT
, POLYGON_MODE_FILL_RECTANGLE_NV
, ..
)) 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 PolygonMode = PolygonMode Int32
deriving newtype (PolygonMode -> PolygonMode -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: PolygonMode -> PolygonMode -> Bool
$c/= :: PolygonMode -> PolygonMode -> Bool
== :: PolygonMode -> PolygonMode -> Bool
$c== :: PolygonMode -> PolygonMode -> Bool
Eq, Eq PolygonMode
PolygonMode -> PolygonMode -> Bool
PolygonMode -> PolygonMode -> Ordering
PolygonMode -> PolygonMode -> PolygonMode
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 :: PolygonMode -> PolygonMode -> PolygonMode
$cmin :: PolygonMode -> PolygonMode -> PolygonMode
max :: PolygonMode -> PolygonMode -> PolygonMode
$cmax :: PolygonMode -> PolygonMode -> PolygonMode
>= :: PolygonMode -> PolygonMode -> Bool
$c>= :: PolygonMode -> PolygonMode -> Bool
> :: PolygonMode -> PolygonMode -> Bool
$c> :: PolygonMode -> PolygonMode -> Bool
<= :: PolygonMode -> PolygonMode -> Bool
$c<= :: PolygonMode -> PolygonMode -> Bool
< :: PolygonMode -> PolygonMode -> Bool
$c< :: PolygonMode -> PolygonMode -> Bool
compare :: PolygonMode -> PolygonMode -> Ordering
$ccompare :: PolygonMode -> PolygonMode -> Ordering
Ord, Ptr PolygonMode -> IO PolygonMode
Ptr PolygonMode -> Int -> IO PolygonMode
Ptr PolygonMode -> Int -> PolygonMode -> IO ()
Ptr PolygonMode -> PolygonMode -> IO ()
PolygonMode -> Int
forall b. Ptr b -> Int -> IO PolygonMode
forall b. Ptr b -> Int -> PolygonMode -> 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 PolygonMode -> PolygonMode -> IO ()
$cpoke :: Ptr PolygonMode -> PolygonMode -> IO ()
peek :: Ptr PolygonMode -> IO PolygonMode
$cpeek :: Ptr PolygonMode -> IO PolygonMode
pokeByteOff :: forall b. Ptr b -> Int -> PolygonMode -> IO ()
$cpokeByteOff :: forall b. Ptr b -> Int -> PolygonMode -> IO ()
peekByteOff :: forall b. Ptr b -> Int -> IO PolygonMode
$cpeekByteOff :: forall b. Ptr b -> Int -> IO PolygonMode
pokeElemOff :: Ptr PolygonMode -> Int -> PolygonMode -> IO ()
$cpokeElemOff :: Ptr PolygonMode -> Int -> PolygonMode -> IO ()
peekElemOff :: Ptr PolygonMode -> Int -> IO PolygonMode
$cpeekElemOff :: Ptr PolygonMode -> Int -> IO PolygonMode
alignment :: PolygonMode -> Int
$calignment :: PolygonMode -> Int
sizeOf :: PolygonMode -> Int
$csizeOf :: PolygonMode -> Int
Storable, PolygonMode
forall a. a -> Zero a
zero :: PolygonMode
$czero :: PolygonMode
Zero)
pattern $bPOLYGON_MODE_FILL :: PolygonMode
$mPOLYGON_MODE_FILL :: forall {r}. PolygonMode -> ((# #) -> r) -> ((# #) -> r) -> r
POLYGON_MODE_FILL = PolygonMode 0
pattern $bPOLYGON_MODE_LINE :: PolygonMode
$mPOLYGON_MODE_LINE :: forall {r}. PolygonMode -> ((# #) -> r) -> ((# #) -> r) -> r
POLYGON_MODE_LINE = PolygonMode 1
pattern $bPOLYGON_MODE_POINT :: PolygonMode
$mPOLYGON_MODE_POINT :: forall {r}. PolygonMode -> ((# #) -> r) -> ((# #) -> r) -> r
POLYGON_MODE_POINT = PolygonMode 2
pattern $bPOLYGON_MODE_FILL_RECTANGLE_NV :: PolygonMode
$mPOLYGON_MODE_FILL_RECTANGLE_NV :: forall {r}. PolygonMode -> ((# #) -> r) -> ((# #) -> r) -> r
POLYGON_MODE_FILL_RECTANGLE_NV = PolygonMode 1000153000
{-# COMPLETE
POLYGON_MODE_FILL
, POLYGON_MODE_LINE
, POLYGON_MODE_POINT
, POLYGON_MODE_FILL_RECTANGLE_NV ::
PolygonMode
#-}
conNamePolygonMode :: String
conNamePolygonMode :: String
conNamePolygonMode = String
"PolygonMode"
enumPrefixPolygonMode :: String
enumPrefixPolygonMode :: String
enumPrefixPolygonMode = String
"POLYGON_MODE_"
showTablePolygonMode :: [(PolygonMode, String)]
showTablePolygonMode :: [(PolygonMode, String)]
showTablePolygonMode =
[ (PolygonMode
POLYGON_MODE_FILL, String
"FILL")
, (PolygonMode
POLYGON_MODE_LINE, String
"LINE")
, (PolygonMode
POLYGON_MODE_POINT, String
"POINT")
, (PolygonMode
POLYGON_MODE_FILL_RECTANGLE_NV, String
"FILL_RECTANGLE_NV")
]
instance Show PolygonMode where
showsPrec :: Int -> PolygonMode -> ShowS
showsPrec =
forall a i.
Eq a =>
String
-> [(a, String)]
-> String
-> (a -> i)
-> (i -> ShowS)
-> Int
-> a
-> ShowS
enumShowsPrec
String
enumPrefixPolygonMode
[(PolygonMode, String)]
showTablePolygonMode
String
conNamePolygonMode
(\(PolygonMode Int32
x) -> Int32
x)
(forall a. Show a => Int -> a -> ShowS
showsPrec Int
11)
instance Read PolygonMode where
readPrec :: ReadPrec PolygonMode
readPrec =
forall i a.
Read i =>
String -> [(a, String)] -> String -> (i -> a) -> ReadPrec a
enumReadPrec
String
enumPrefixPolygonMode
[(PolygonMode, String)]
showTablePolygonMode
String
conNamePolygonMode
Int32 -> PolygonMode
PolygonMode