Copyright | 2013 shelarcy |
---|---|
License | BSD-style |
Maintainer | shelarcy@gmail.com |
Stability | Provisional |
Portability | Non-portable (Win32 API) |
Safe Haskell | Safe |
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 | |
Storable BLENDFUNCTION Source # | |
Defined in Graphics.Win32.GDI.AlphaBlend sizeOf :: BLENDFUNCTION -> Int Source # alignment :: BLENDFUNCTION -> Int Source # peekElemOff :: Ptr BLENDFUNCTION -> Int -> IO BLENDFUNCTION Source # pokeElemOff :: Ptr BLENDFUNCTION -> Int -> BLENDFUNCTION -> IO () Source # peekByteOff :: Ptr b -> Int -> IO BLENDFUNCTION Source # pokeByteOff :: Ptr b -> Int -> BLENDFUNCTION -> IO () Source # peek :: Ptr BLENDFUNCTION -> IO BLENDFUNCTION Source # poke :: Ptr BLENDFUNCTION -> BLENDFUNCTION -> IO () Source # |