Safe Haskell | None |
---|---|
Language | Haskell98 |
This module provides data types for all formats of textures and frame buffers. None of the type classes in this module are intended to be instanced by anyone else. In fact,
GPipe only uses these type classes through the GADT Format
, which is closed, so any new instances wouldnt be considered anyway.
Synopsis
- data Format a where
- R8 :: Format RFloat
- R8S :: Format RFloat
- R16 :: Format RFloat
- R16S :: Format RFloat
- R16F :: Format RFloat
- R32F :: Format RFloat
- R8I :: Format RInt
- R16I :: Format RInt
- R32I :: Format RInt
- R8UI :: Format RWord
- R16UI :: Format RWord
- R32UI :: Format RWord
- RG8 :: Format RGFloat
- RG8S :: Format RGFloat
- RG16 :: Format RGFloat
- RG16S :: Format RGFloat
- RG16F :: Format RGFloat
- RG32F :: Format RGFloat
- RG8I :: Format RGInt
- RG16I :: Format RGInt
- RG32I :: Format RGInt
- RG8UI :: Format RGWord
- RG16UI :: Format RGWord
- RG32UI :: Format RGWord
- R3G3B2 :: Format RGBFloat
- RGB4 :: Format RGBFloat
- RGB5 :: Format RGBFloat
- RGB8 :: Format RGBFloat
- RGB8S :: Format RGBFloat
- RGB10 :: Format RGBFloat
- RGB12 :: Format RGBFloat
- RGB16 :: Format RGBFloat
- RGB16S :: Format RGBFloat
- RGB16F :: Format RGBFloat
- RGB32F :: Format RGBFloat
- R11FG11FB10F :: Format RGBFloat
- RGB9E5 :: Format RGBFloat
- SRGB8 :: Format RGBFloat
- RGB8I :: Format RGBInt
- RGB16I :: Format RGBInt
- RGB32I :: Format RGBInt
- RGBWord :: Format RGBWord
- RGB8UI :: Format RGBWord
- RGB16UI :: Format RGBWord
- RGB32UI :: Format RGBWord
- RGBA2 :: Format RGBAFloat
- RGBA4 :: Format RGBAFloat
- RGB5A1 :: Format RGBAFloat
- RGBA8 :: Format RGBAFloat
- RGBA8S :: Format RGBAFloat
- RGB10A2 :: Format RGBAFloat
- RGBA12 :: Format RGBAFloat
- RGBA16 :: Format RGBAFloat
- RGBA16S :: Format RGBAFloat
- RGBA16F :: Format RGBAFloat
- RGBA32F :: Format RGBAFloat
- SRGB8A8 :: Format RGBAFloat
- RGBA8I :: Format RGBAInt
- RGBA16I :: Format RGBAInt
- RGBA32I :: Format RGBAInt
- RGBA8UI :: Format RGBAWord
- RGBA16UI :: Format RGBAWord
- RGBA32UI :: Format RGBAWord
- Depth16 :: Format Depth
- Depth24 :: Format Depth
- Depth32 :: Format Depth
- Depth32F :: Format Depth
- Stencil1 :: Format Stencil
- Stencil4 :: Format Stencil
- Stencil8 :: Format Stencil
- Stencil16 :: Format Stencil
- Depth24Stencil8 :: Format DepthStencil
- Depth32FStencil8 :: Format DepthStencil
- class TextureFormat f
- data RFloat
- data RInt
- data RWord
- data RGFloat
- data RGInt
- data RGWord
- data RGBFloat
- data RGBInt
- data RGBWord
- data RGBAFloat
- data RGBAInt
- data RGBAWord
- data Depth
- data Stencil
- data DepthStencil
- class TextureFormat f => ColorSampleable f where
- type Color f a
- type ColorElement f :: *
- class ColorSampleable c => ColorRenderable c
- class ColorSampleable f => DepthRenderable f
- class StencilRenderable f
- data WindowFormat c ds where
- WindowFormatColor :: ContextColorFormat c => Format c -> WindowFormat c ()
- WindowFormatColorDepth :: ContextColorFormat c => Format c -> Format Depth -> WindowFormat c Depth
- WindowFormatColorStencil :: ContextColorFormat c => Format c -> Format Stencil -> WindowFormat c Stencil
- WindowFormatColorDepthStencilSeparate :: ContextColorFormat c => Format c -> Format Depth -> Format Stencil -> WindowFormat c DepthStencil
- WindowFormatColorDepthStencilCombined :: ContextColorFormat c => Format c -> Format DepthStencil -> WindowFormat c DepthStencil
- WindowFormatDepth :: Format Depth -> WindowFormat () Depth
- WindowFormatStencil :: Format Stencil -> WindowFormat () Stencil
- WindowFormatDepthStencilSeparate :: Format Depth -> Format Stencil -> WindowFormat () DepthStencil
- WindowFormatDepthStencilCombined :: Format DepthStencil -> WindowFormat () DepthStencil
- class ColorRenderable c => ContextColorFormat c
- windowBits :: WindowFormat c ds -> WindowBits
- type WindowBits = ((Int, Int, Int, Int, Bool), Int, Int)
Texture formats
class TextureFormat f Source #
Instances
Instances
ContextColorFormat RFloat Source # | |
ColorRenderable RFloat Source # | |
Defined in Graphics.GPipe.Internal.Format | |
ColorSampleable RFloat Source # | |
Defined in Graphics.GPipe.Internal.Format | |
TextureFormat RFloat Source # | |
Defined in Graphics.GPipe.Internal.Format getGlFormat :: RFloat -> GLenum | |
type ColorElement RFloat Source # | |
Defined in Graphics.GPipe.Internal.Format | |
type Color RFloat a Source # | |
Defined in Graphics.GPipe.Internal.Format |
Instances
ColorRenderable RInt Source # | |
Defined in Graphics.GPipe.Internal.Format | |
ColorSampleable RInt Source # | |
Defined in Graphics.GPipe.Internal.Format | |
TextureFormat RInt Source # | |
Defined in Graphics.GPipe.Internal.Format getGlFormat :: RInt -> GLenum | |
type ColorElement RInt Source # | |
Defined in Graphics.GPipe.Internal.Format | |
type Color RInt a Source # | |
Defined in Graphics.GPipe.Internal.Format |
Instances
ColorRenderable RWord Source # | |
Defined in Graphics.GPipe.Internal.Format | |
ColorSampleable RWord Source # | |
Defined in Graphics.GPipe.Internal.Format | |
TextureFormat RWord Source # | |
Defined in Graphics.GPipe.Internal.Format getGlFormat :: RWord -> GLenum | |
type ColorElement RWord Source # | |
Defined in Graphics.GPipe.Internal.Format | |
type Color RWord a Source # | |
Defined in Graphics.GPipe.Internal.Format |
Instances
ContextColorFormat RGFloat Source # | |
ColorRenderable RGFloat Source # | |
Defined in Graphics.GPipe.Internal.Format | |
ColorSampleable RGFloat Source # | |
Defined in Graphics.GPipe.Internal.Format | |
TextureFormat RGFloat Source # | |
Defined in Graphics.GPipe.Internal.Format getGlFormat :: RGFloat -> GLenum | |
type ColorElement RGFloat Source # | |
Defined in Graphics.GPipe.Internal.Format | |
type Color RGFloat a Source # | |
Defined in Graphics.GPipe.Internal.Format |
Instances
ColorRenderable RGInt Source # | |
Defined in Graphics.GPipe.Internal.Format | |
ColorSampleable RGInt Source # | |
Defined in Graphics.GPipe.Internal.Format | |
TextureFormat RGInt Source # | |
Defined in Graphics.GPipe.Internal.Format getGlFormat :: RGInt -> GLenum | |
type ColorElement RGInt Source # | |
Defined in Graphics.GPipe.Internal.Format | |
type Color RGInt a Source # | |
Defined in Graphics.GPipe.Internal.Format |
Instances
ColorRenderable RGWord Source # | |
Defined in Graphics.GPipe.Internal.Format | |
ColorSampleable RGWord Source # | |
Defined in Graphics.GPipe.Internal.Format | |
TextureFormat RGWord Source # | |
Defined in Graphics.GPipe.Internal.Format getGlFormat :: RGWord -> GLenum | |
type ColorElement RGWord Source # | |
Defined in Graphics.GPipe.Internal.Format | |
type Color RGWord a Source # | |
Defined in Graphics.GPipe.Internal.Format |
Instances
ContextColorFormat RGBFloat Source # | |
ColorRenderable RGBFloat Source # | |
Defined in Graphics.GPipe.Internal.Format | |
ColorSampleable RGBFloat Source # | |
Defined in Graphics.GPipe.Internal.Format | |
TextureFormat RGBFloat Source # | |
Defined in Graphics.GPipe.Internal.Format getGlFormat :: RGBFloat -> GLenum | |
type ColorElement RGBFloat Source # | |
Defined in Graphics.GPipe.Internal.Format | |
type Color RGBFloat a Source # | |
Defined in Graphics.GPipe.Internal.Format |
Instances
ColorRenderable RGBInt Source # | |
Defined in Graphics.GPipe.Internal.Format | |
ColorSampleable RGBInt Source # | |
Defined in Graphics.GPipe.Internal.Format | |
TextureFormat RGBInt Source # | |
Defined in Graphics.GPipe.Internal.Format getGlFormat :: RGBInt -> GLenum | |
type ColorElement RGBInt Source # | |
Defined in Graphics.GPipe.Internal.Format | |
type Color RGBInt a Source # | |
Defined in Graphics.GPipe.Internal.Format |
Instances
ColorRenderable RGBWord Source # | |
Defined in Graphics.GPipe.Internal.Format | |
ColorSampleable RGBWord Source # | |
Defined in Graphics.GPipe.Internal.Format | |
TextureFormat RGBWord Source # | |
Defined in Graphics.GPipe.Internal.Format getGlFormat :: RGBWord -> GLenum | |
type ColorElement RGBWord Source # | |
Defined in Graphics.GPipe.Internal.Format | |
type Color RGBWord a Source # | |
Defined in Graphics.GPipe.Internal.Format |
Instances
ContextColorFormat RGBAFloat Source # | |
ColorRenderable RGBAFloat Source # | |
Defined in Graphics.GPipe.Internal.Format | |
ColorSampleable RGBAFloat Source # | |
Defined in Graphics.GPipe.Internal.Format | |
TextureFormat RGBAFloat Source # | |
Defined in Graphics.GPipe.Internal.Format getGlFormat :: RGBAFloat -> GLenum | |
type ColorElement RGBAFloat Source # | |
Defined in Graphics.GPipe.Internal.Format | |
type Color RGBAFloat a Source # | |
Defined in Graphics.GPipe.Internal.Format |
Instances
ColorRenderable RGBAInt Source # | |
Defined in Graphics.GPipe.Internal.Format | |
ColorSampleable RGBAInt Source # | |
Defined in Graphics.GPipe.Internal.Format | |
TextureFormat RGBAInt Source # | |
Defined in Graphics.GPipe.Internal.Format getGlFormat :: RGBAInt -> GLenum | |
type ColorElement RGBAInt Source # | |
Defined in Graphics.GPipe.Internal.Format | |
type Color RGBAInt a Source # | |
Defined in Graphics.GPipe.Internal.Format |
Instances
ColorRenderable RGBAWord Source # | |
Defined in Graphics.GPipe.Internal.Format | |
ColorSampleable RGBAWord Source # | |
Defined in Graphics.GPipe.Internal.Format | |
TextureFormat RGBAWord Source # | |
Defined in Graphics.GPipe.Internal.Format getGlFormat :: RGBAWord -> GLenum | |
type ColorElement RGBAWord Source # | |
Defined in Graphics.GPipe.Internal.Format | |
type Color RGBAWord a Source # | |
Defined in Graphics.GPipe.Internal.Format |
Instances
DepthRenderable Depth Source # | |
Defined in Graphics.GPipe.Internal.Format | |
ColorSampleable Depth Source # | |
Defined in Graphics.GPipe.Internal.Format | |
TextureFormat Depth Source # | |
Defined in Graphics.GPipe.Internal.Format getGlFormat :: Depth -> GLenum | |
type ColorElement Depth Source # | |
Defined in Graphics.GPipe.Internal.Format | |
type Color Depth a Source # | |
Defined in Graphics.GPipe.Internal.Format |
Instances
StencilRenderable Stencil Source # | |
Defined in Graphics.GPipe.Internal.Format |
data DepthStencil Source #
Instances
StencilRenderable DepthStencil Source # | |
Defined in Graphics.GPipe.Internal.Format | |
DepthRenderable DepthStencil Source # | |
Defined in Graphics.GPipe.Internal.Format | |
ColorSampleable DepthStencil Source # | |
Defined in Graphics.GPipe.Internal.Format type Color DepthStencil a :: Type Source # type ColorElement DepthStencil :: Type Source # typeStr :: DepthStencil -> String typeStr4 :: DepthStencil -> String toColor :: DepthStencil -> V4 x -> Color DepthStencil x fromColor :: DepthStencil -> Color DepthStencil x -> [x] setBorderColor :: DepthStencil -> GLenum -> Color DepthStencil (ColorElement DepthStencil) -> IO () samplerPrefix :: DepthStencil -> String | |
TextureFormat DepthStencil Source # | |
Defined in Graphics.GPipe.Internal.Format getGlFormat :: DepthStencil -> GLenum | |
type ColorElement DepthStencil Source # | |
Defined in Graphics.GPipe.Internal.Format | |
type Color DepthStencil a Source # | |
Defined in Graphics.GPipe.Internal.Format |
Format constraints
class TextureFormat f => ColorSampleable f Source #
Instances
class ColorSampleable c => ColorRenderable c Source #
Instances
ColorRenderable RGBAWord Source # | |
Defined in Graphics.GPipe.Internal.Format | |
ColorRenderable RGBAInt Source # | |
Defined in Graphics.GPipe.Internal.Format | |
ColorRenderable RGBAFloat Source # | |
Defined in Graphics.GPipe.Internal.Format | |
ColorRenderable RGBWord Source # | |
Defined in Graphics.GPipe.Internal.Format | |
ColorRenderable RGBInt Source # | |
Defined in Graphics.GPipe.Internal.Format | |
ColorRenderable RGBFloat Source # | |
Defined in Graphics.GPipe.Internal.Format | |
ColorRenderable RGWord Source # | |
Defined in Graphics.GPipe.Internal.Format | |
ColorRenderable RGInt Source # | |
Defined in Graphics.GPipe.Internal.Format | |
ColorRenderable RGFloat Source # | |
Defined in Graphics.GPipe.Internal.Format | |
ColorRenderable RWord Source # | |
Defined in Graphics.GPipe.Internal.Format | |
ColorRenderable RInt Source # | |
Defined in Graphics.GPipe.Internal.Format | |
ColorRenderable RFloat Source # | |
Defined in Graphics.GPipe.Internal.Format |
class ColorSampleable f => DepthRenderable f Source #
Instances
DepthRenderable DepthStencil Source # | |
Defined in Graphics.GPipe.Internal.Format | |
DepthRenderable Depth Source # | |
Defined in Graphics.GPipe.Internal.Format |
class StencilRenderable f Source #
Instances
StencilRenderable DepthStencil Source # | |
Defined in Graphics.GPipe.Internal.Format | |
StencilRenderable Stencil Source # | |
Defined in Graphics.GPipe.Internal.Format |
Context formats
data WindowFormat c ds where Source #
WindowFormatColor :: ContextColorFormat c => Format c -> WindowFormat c () | |
WindowFormatColorDepth :: ContextColorFormat c => Format c -> Format Depth -> WindowFormat c Depth | |
WindowFormatColorStencil :: ContextColorFormat c => Format c -> Format Stencil -> WindowFormat c Stencil | |
WindowFormatColorDepthStencilSeparate :: ContextColorFormat c => Format c -> Format Depth -> Format Stencil -> WindowFormat c DepthStencil | |
WindowFormatColorDepthStencilCombined :: ContextColorFormat c => Format c -> Format DepthStencil -> WindowFormat c DepthStencil | |
WindowFormatDepth :: Format Depth -> WindowFormat () Depth | |
WindowFormatStencil :: Format Stencil -> WindowFormat () Stencil | |
WindowFormatDepthStencilSeparate :: Format Depth -> Format Stencil -> WindowFormat () DepthStencil | |
WindowFormatDepthStencilCombined :: Format DepthStencil -> WindowFormat () DepthStencil |
class ColorRenderable c => ContextColorFormat c Source #
windowBits :: WindowFormat c ds -> WindowBits Source #