packages feed

GLUtil-0.6.1.1: GLUtil.cabal

Name:                GLUtil
Version:             0.6.1.1
Synopsis:            Miscellaneous OpenGL utilities.
License:             BSD3
License-file:        LICENSE
Author:              Anthony Cowley
Maintainer:          acowley@gmail.com
Copyright:           (c) 2012 Anthony Cowley
Category:            Graphics
Build-type:          Simple
Description:         Helpers for working with shaders, buffer objects, and 
                     textures in OpenGL.

Cabal-version:       >=1.6

Extra-Source-Files: examples/example1.hs,
                    examples/TGA.hs,
                    examples/images/hello1.tga,
                    examples/images/hello2.tga,
                    examples/shaders/hello-gl.frag,
                    examples/shaders/hello-gl.vert

Library
  Exposed-modules:     Graphics.GLUtil,
                       Graphics.GLUtil.GLError,
                       Graphics.GLUtil.Shaders,
                       Graphics.GLUtil.ShaderProgram,
                       Graphics.GLUtil.BufferObjects,
                       Graphics.GLUtil.Textures,
                       Graphics.GLUtil.JuicyTextures,
                       Graphics.GLUtil.VertexArrayObjects,
                       Graphics.GLUtil.Linear,
                       Graphics.GLUtil.TypeMapping,
                       Graphics.GLUtil.Viewport
  
  Build-depends:       base >= 4.2 && < 5,
                       bytestring,
                       array,
                       containers,
                       linear,
                       JuicyPixels >= 3,
                       OpenGLRaw >= 1.1,
                       OpenGL >= 2.4,
                       vector >= 0.7
  Build-tools:         cpphs
  GHC-Options:         -Odph -Wall
  HS-Source-Dirs:      src
  
source-repository this
  type:     git
  tag:      0.6.1
  location: http://github.com/acowley/GLUtil.git