C++ libraries

License

Copyright 2014 François Bertel. Released under Apache License, Version 2.0.

Third-party licenses

The third-party files in the glfunctions project in third_party/ogl are released under the following terms:

Copyright (c) 2013 The Khronos Group Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and/or associated documentation files (the "Materials"), to deal in the Materials without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Materials, and to permit persons to whom the Materials are furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Materials.

THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.

Libraries

All the libraries are using CMake as a build system.
  1. compiler: A set of macros to abstract C++ compiler specifics. Every other C++ library depends on this project.[gitweb][doxygen].

    git clone git://git.tuxfamily.org/gitroot/fbcorner/compiler.git
  2. testing: A simple testing framework. Every other library except compiler depends on this project for testing.[gitweb][doxygen].

    git clone git://git.tuxfamily.org/gitroot/fbcorner/testing.git
  3. pbc: Programming By Contract [?]. Depends on compiler and testing. [gitweb][doxygen].

    git clone git://git.tuxfamily.org/gitroot/fbcorner/pbc.git
  4. mm: Memory management (with reference counting and smart pointers). Depends on compiler, testing and pbc. [gitweb][doxygen].

    git clone git://git.tuxfamily.org/gitroot/fbcorner/mem.git
  5. event: An event library. Depends on compiler, testing, pbc and mm. [gitweb][doxygen].

    git clone git://git.tuxfamily.org/gitroot/fbcorner/event.git
  6. osgl: An abstraction to OS specific OpenGL calls. Depends on compiler and testing. [gitweb][doxygen].

    git clone git://git.tuxfamily.org/gitroot/fbcorner/osgl.git
  7. glheader: A wrapper around the standard OpenGL header. [gitweb][doxygen].

    git clone git://git.tuxfamily.org/gitroot/fbcorner/glheader.git
  8. glfunctions: An executable that parses the official XML files from OpenGL (egl.xml, gl.xml, glx.xml and wgl.xml) to generate headers and function pointer resolution. Depends on compiler, pbc, mm and third-party libraries boost (for regex and program options) and libxml++ (in addition the tests depends on testing, osgl and glheader).[gitweb][doxygen].

    git clone git://git.tuxfamily.org/gitroot/fbcorner/glfunctions.git