GLFW-b: Bindings to GLFW OpenGL library

This is a package candidate release! Here you can preview how this package release will appear once published to the main package index (which can be accomplished via the 'maintain' link below). Please note that once a package has been published to the main package index it cannot be undone! Please consult the package uploading documentation for more information.

[maintain] [Publish]

Bindings to GLFW (http://www.glfw.org/), an open source, multi-platform library for creating windows with OpenGL contexts and managing input and events.

GLFW-b depends on bindings-GLFW (http://hackage.haskell.org/package/bindings-GLFW), which, as of the time of this writing, binds to GLFW 3.1, released 2015-01-18 (http://www.glfw.org/Version-3.1-released.html http://www.glfw.org/changelog.html).

If you've used GLFW < 3 before, you should read the transition guide (http://www.glfw.org/docs/3.0/moving.html).


[Skip to Readme]

Properties

Versions 0.0.1, 0.0.2, 0.0.2.1, 0.0.2.2, 0.0.2.3, 0.0.2.4, 0.0.2.5, 0.0.2.6, 0.0.2.7, 0.0.2.8, 0.0.2.9, 0.0.2.10, 0.1.0.0, 0.1.0.1, 0.1.0.2, 0.1.0.3, 0.1.0.4, 0.1.0.5, 1.0.0, 1.0.1, 1.0.2, 1.1.0, 1.2.0, 1.2.1, 1.3, 1.4, 1.4.1, 1.4.2, 1.4.3, 1.4.4, 1.4.5, 1.4.6, 1.4.7, 1.4.7.1, 1.4.7.2, 1.4.7.3, 1.4.8.0, 1.4.8.1, 1.4.8.1, 1.4.8.2, 1.4.8.3, 1.4.8.4, 3.2.1.0, 3.2.1.1, 3.3.0.0, 3.3.9.0
Change log None available
Dependencies base (<5), bindings-GLFW (>=3.1.2.0) [details]
License BSD-3-Clause
Author Brian Lewis <brian@lorf.org>
Maintainer Brian Lewis <brian@lorf.org>, Schell Scivally <schell.scivally@synapsegroup.com>
Category Graphics
Source repo head: git clone git://github.com/bsl/GLFW-b.git
Uploaded by javjarfer at 2016-10-01T17:44:21Z

Modules

[Index]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees


Readme for GLFW-b-1.4.8.1

[back to package description]

GLFW-b

Hackage

Description

Haskell bindings to GLFW, an Open Source, multi-platform library for creating windows with OpenGL contexts and managing input and events.

GLFW-b depends on bindings-GLFW, which, as of the time of this writing, binds to GLFW 3.1, released 2015-01-18.

For a demonstration of GLFW-b, see GLFW-b-demo.

When running GLFW-b in GHCI, don't forget to

:set -fno-ghci-sandbox

since GHCI can (and might) run each line of your code in a fresh unbounded thread.

Contributing

This package uses git-flow as development model, in short that means that:

  1. New features should be added to "develop" branch.
  2. "master" branch is reserved for stable releases.
  3. Patches for bugs related with previous releases should always be done in "hotfixes" branch.
  4. All merge commits to master from "hotfixes" should be done using the "--no-ff" flag and from "develop" should avoid merging commits.

Until we have a defined road-map we are going to leave out "release "branches" and "feature branches". For more information about this development model please refer to this site.

Thanks you, and happy coding.