Copyright | 2013 shelarcy |
---|---|
License | BSD-style |
Maintainer | shelarcy@gmail.com |
Stability | Provisional |
Portability | Non-portable (Win32 API) |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
Provides alpha blending functionality.
Documentation
c_AlphaBlend :: HDC -> Int -> Int -> Int -> Int -> HDC -> Int -> Int -> Int -> Int -> PBLENDFUNCTION -> IO BOOL Source #
c_TransparentBlt :: HDC -> Int -> Int -> Int -> Int -> HDC -> Int -> Int -> Int -> Int -> UINT -> IO BOOL Source #
aC_SRC_OVER :: BYTE Source #
aC_SRC_ALPHA :: BYTE Source #
type PBLENDFUNCTION = Ptr BLENDFUNCTION Source #
type LPBLENDFUNCTION = Ptr BLENDFUNCTION Source #
data BLENDFUNCTION Source #
BLENDFUNCTION | |
|
Instances
Show BLENDFUNCTION Source # | |
Defined in Graphics.Win32.GDI.AlphaBlend showsPrec :: Int -> BLENDFUNCTION -> ShowS show :: BLENDFUNCTION -> String showList :: [BLENDFUNCTION] -> ShowS | |
Storable BLENDFUNCTION Source # | |
Defined in Graphics.Win32.GDI.AlphaBlend sizeOf :: BLENDFUNCTION -> Int alignment :: BLENDFUNCTION -> Int peekElemOff :: Ptr BLENDFUNCTION -> Int -> IO BLENDFUNCTION pokeElemOff :: Ptr BLENDFUNCTION -> Int -> BLENDFUNCTION -> IO () peekByteOff :: Ptr b -> Int -> IO BLENDFUNCTION pokeByteOff :: Ptr b -> Int -> BLENDFUNCTION -> IO () peek :: Ptr BLENDFUNCTION -> IO BLENDFUNCTION poke :: Ptr BLENDFUNCTION -> BLENDFUNCTION -> IO () |