-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathGPipe.cabal
54 lines (50 loc) · 2.4 KB
/
GPipe.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: GPipe
version: 1.4.5
cabal-version: >= 1.18
build-type: Simple
license: BSD3
copyright: Tobias Bexelius
maintainer: Tobias Bexelius
stability: Experimental
homepage: http://www.haskell.org/haskellwiki/GPipe
package-url: http://hackage.haskell.org/package/GPipe
bug-reports: https://github.com/tobbebex/GPipe/issues
synopsis: A functional graphics API for programmable GPUs
description: GPipe models the entire graphics pipeline in a purely functional, immutable and typesafe way. It is built on top of the programmable pipeline (i.e. non-fixed function) of
OpenGL 2.1 and uses features such as vertex buffer objects (VBO's), texture objects and GLSL shader code synthetisation to create fast graphics programs. Buffers,
textures and shaders are cached internally to ensure fast framerate, and GPipe is also capable of managing multiple windows and contexts. By creating your own
instances of GPipes classes, it's possible to use additional datatypes on the GPU.
.
You'll need full OpenGL 2.1 support, including GLSL 1.20 to use GPipe. Thanks to OpenGLRaw, you may still build GPipe programs on machines lacking this support.
category: Graphics
author: Tobias Bexelius
Library
build-depends:
base >= 4.7 && <5,
containers >= 0.5.5 && <0.6,
list-tries >= 0.6.1 && <0.7,
GLUT >= 2.7 && <2.8,
OpenGL >= 2.12 && <2.13,
Vec >= 1.0.5 && <2.0,
Boolean >= 0.2.3 && <0.3,
Vec-Boolean >= 1.0.7 && <2.0,
transformers >= 0.4.3.0 && < 0.5,
hashtables >= 1.2.0.2 && < 1.3
other-modules:
Formats,
GPUStream,
InputAssembler,
OutputMerger,
Rasterizer,
Resources,
Shader,
Textures
hs-source-dirs: src
exposed-modules:
Graphics.GPipe,
Graphics.GPipe.Format,
Graphics.GPipe.FrameBuffer,
Graphics.GPipe.Stream,
Graphics.GPipe.Stream.Fragment,
Graphics.GPipe.Stream.Primitive,
Graphics.GPipe.Texture