File: Bitmap.hs

package info (click to toggle)
haskell-gloss 1.13.2.2-4
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 344 kB
  • sloc: haskell: 2,903; makefile: 2
file content (16 lines) | stat: -rw-r--r-- 436 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

-- | Functions to load bitmap data from various places.
module Graphics.Gloss.Data.Bitmap
        ( Rectangle(..)
        , BitmapData, bitmapSize
        , BitmapFormat(..), RowOrder(..), PixelFormat(..)
        , bitmapOfForeignPtr
        , bitmapDataOfForeignPtr
        , bitmapOfByteString
        , bitmapDataOfByteString
        , bitmapOfBMP
        , bitmapDataOfBMP
        , loadBMP)
where
import Graphics.Gloss.Rendering