Copyright | (C) 2015 Dimitri Sabadie |
---|---|
License | BSD3 |
Maintainer | Dimitri Sabadie <dimitri.sabadie@gmail.com> |
Stability | experimental |
Portability | portable |
Safe Haskell | None |
Language | Haskell2010 |
- class ChannelSize c
- data C8 = C8
- data C16 = C16
- data C32 = C32
- class ChannelType t
- data CInts = CInts
- data CUInts = CUInts
- data CFloats = CFloats
- data CR a = CR
- data CRG a b = CRG
- data CRGB a b c = CRGB
- data CRGBA a b c d = CRGBA
- data CDepth a = CDepth
- data Format t c = Format
- class Pixel f
- type RGB8UI = Format CUInts (CRGB C8 C8 C8)
- type RGBA8UI = Format CUInts (CRGBA C8 C8 C8 C8)
- type RGBA8F = Format CFloats (CRGBA C8 C8 C8 C8)
- type RGB32F = Format CFloats (CRGB C32 C32 C32)
- type RGBA32F = Format CFloats (CRGBA C32 C32 C32 C32)
- type Depth32F = Format CFloats (CDepth C32)
- class Pixel p => ColorPixel p
Channel size
class ChannelSize c Source
channelSize
A 8-bit channel.
A 16-bit channel.
A 32-bit channel.
Channel type
class ChannelType t Source
channelType
Channels are integral values.
Channels are unsigned integral values.
Channels are floating values.
Channel shape
A red channel only.
Rd and green channels.
Red, green and blue channels.
Red, green, blue and alpha channels.
A depth channel.
Pixel format
A pixel format.
Pixel Depth32F Source | |
Pixel RGBA32F Source | |
Pixel RGB32F Source | |
Pixel RGBA8UI Source | |
Pixel RGB8UI Source | |
Eq (Format t c) Source | |
Ord (Format t c) Source | |
Show (Format t c) Source | |
Pixel (Format t (CRGBA r g b a)) => ColorPixel (Format t (CRGBA r g b a)) Source | |
Pixel (Format t (CRGB r g b)) => ColorPixel (Format t (CRGB r g b)) Source | |
Pixel (Format t (CRG r g)) => ColorPixel (Format t (CRG r g)) Source | |
Pixel (Format t (CR r)) => ColorPixel (Format t (CR r)) Source | |
ChannelType t => ChannelType (Format t c) Source | |
Pixel (Format t (CDepth d)) => FramebufferDepthAttachment (Format t (CDepth d)) Source | |
ColorPixel (Format t c) => FramebufferColorAttachment (Format t c) Source |
pixelFormat, pixelIFormat, pixelType
Color pixel
class Pixel p => ColorPixel p Source