cscg22-gearboy

CSCG 2022 Challenge 'Gearboy'
git clone https://git.sinitax.com/sinitax/cscg22-gearboy
Log | Files | Refs | sfeed.txt

index.html (12941B)


      1<!-- begin header.html -->
      2<!--
      3The OpenGL Extension Wrangler Library
      4Copyright (C) 2008-2015, Nigel Stewart <nigels[]users sourceforge net>
      5Copyright (C) 2002-2008, Milan Ikits <milan ikits[]ieee org>
      6Copyright (C) 2002-2008, Marcelo E. Magallon <mmagallo[]debian org>
      7Copyright (C) 2002, Lev Povalahev
      8All rights reserved.
      9
     10Redistribution and use in source and binary forms, with or without 
     11modification, are permitted provided that the following conditions are met:
     12
     13* Redistributions of source code must retain the above copyright notice, 
     14  this list of conditions and the following disclaimer.
     15* Redistributions in binary form must reproduce the above copyright notice, 
     16  this list of conditions and the following disclaimer in the documentation 
     17  and/or other materials provided with the distribution.
     18* The name of the author may be used to endorse or promote products 
     19  derived from this software without specific prior written permission.
     20
     21THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 
     22AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
     23IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     24ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 
     25LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 
     26CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 
     27SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     28INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     29CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     30ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
     31THE POSSIBILITY OF SUCH DAMAGE.
     32-->
     33<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html/4/loose.dtd">
     34<html>
     35<head>
     36<title>GLEW: The OpenGL Extension Wrangler Library</title>
     37<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> 
     38<link href="glew.css" type="text/css" rel="stylesheet">
     39</head>
     40<body bgcolor="#fff0d0">
     41<table border="0" width="100%" cellpadding="12" cellspacing="8" style="height:100%">
     42<tr>
     43<td bgcolor="#ffffff" align="left" valign="top" width="200">
     44<table border="0" width="100%" cellpadding="0" cellspacing="0" align="left">
     45<tr>
     46<td valign="top">
     47
     48<table border="0" width="100%" cellpadding="0" cellspacing="0" align="left">
     49<tr><td align="center"><i>Latest Release: <a href="https://sourceforge.net/projects/glew/files/glew/2.1.0/">2.1.0</a></i></td></tr>
     50<tr><td align="center"><br></td></tr>
     51<tr><td align="center"><img src="./glew.png" alt="GLEW Logo" width="97" height="75"></td></tr>
     52<tr><td align="center"><br></td></tr>
     53<tr><td align="center">
     54<table border="0" cellpadding="0" cellspacing="0" align="center">
     55<tr><td align="center">Download</td></tr>
     56<tr><td align="center"><a href="basic.html">Usage</a></td></tr>
     57<tr><td align="center"><a href="build.html">Building</a></td></tr>
     58<tr><td align="center"><a href="install.html">Installation</a></td></tr>
     59<tr><td align="center"><a href="advanced.html">Source Generation</a></td></tr>
     60<tr><td align="center"><a href="log.html">Change Log</a></td></tr>
     61<tr><td align="center"><br></tr>
     62<tr><td align="center"><a href="https://github.com/nigels-com/glew">GitHub</a></td></tr>
     63<tr><td align="center"><a href="https://github.com/nigels-com/glew/issues">Issues</a></td></tr>
     64<tr><td align="center"><a href="https://github.com/nigels-com/glew/pulls">Pull Requests</a></td></tr>
     65<tr><td align="center"><a href="https://github.com/nigels-com/glew#authors">Authors</a></td></tr>
     66<tr><td align="center"><a href="https://github.com/nigels-com/glew#copyright-and-licensing">Licensing</a></td></tr>
     67<tr><td align="center"><br></tr>
     68<tr><td align="center"><a href="https://sourceforge.net/projects/glew">SourceForge Page</a></td></tr>
     69</table>
     70<tr><td align="center"><br></tr>
     71</table>
     72</td>
     73</tr>
     74<tr>
     75
     76<td valign="bottom">
     77<table border="0" width="100%" cellpadding="5" cellspacing="0" align="left">
     78<tr><td align="center"><i>Last Update: 07-31-17</i></td></tr>
     79<tr><td align="center">
     80	<a href="http://www.opengl.org"><img src="./ogl_sm.jpg" width="68" height="35" border="0" alt="OpenGL Logo"></a><br/>
     81	<a href="https://github.com/nigels-com/glew"><img src="github.png" width="70" height="29" border="0" alt="GitHub Logo"></a><br/>
     82	<a href="https://travis-ci.org/nigels-com/glew/builds"><img src="travis.png" width="114" height="25" border="0" alt="Travis Logo"></a><br/>
     83	<a href="http://sourceforge.net"><img src="http://sourceforge.net/sflogo.php?group_id=67586&amp;type=1" width="88" height="31" border="0" alt="SourceForge Logo"></a>
     84</td>
     85</tr>
     86</table>
     87</td>
     88</tr>
     89</table>
     90</td>
     91
     92<td bgcolor="#ffffff" align="left" valign="top">
     93
     94<h1>The OpenGL Extension Wrangler Library</h1>
     95
     96<!-- end header.html -->
     97
     98
     99<p>
    100The OpenGL Extension Wrangler Library (GLEW) is a cross-platform
    101open-source C/C++ extension loading library.  GLEW provides efficient
    102run-time mechanisms for determining which OpenGL extensions are
    103supported on the target platform.  OpenGL core and extension
    104functionality is exposed in a single header file.  GLEW has been
    105tested on a variety of operating systems, including Windows, Linux,
    106Mac OS X, FreeBSD, Irix, and Solaris.
    107</p>
    108
    109<h2>Downloads</h2>
    110<p>
    111<a href="http://sourceforge.net/projects/glew/">GLEW</a> is distributed
    112as source and precompiled binaries.<br/>
    113The latest release is
    114<a href="https://sourceforge.net/projects/glew/files/glew/2.1.0/">2.1.0</a>[07-31-17]:
    115</p>
    116<p>
    117</p>
    118<p>
    119<table border="1" cellpadding="5" cellspacing="0" bgcolor="#f0f0f0" align="center">
    120<tr>
    121<td>
    122<table border="0" cellpadding="3" cellspacing="0">
    123<tr>
    124<td></td>
    125<td align="right"><b>Source</b></td>
    126<td></td>
    127<td align="left">
    128<a href="https://sourceforge.net/projects/glew/files/glew/2.1.0/glew-2.1.0.zip/download">ZIP</a>&nbsp;|&nbsp;
    129<a href="https://sourceforge.net/projects/glew/files/glew/2.1.0/glew-2.1.0.tgz/download">TGZ</a></td>
    130<td></td>
    131</tr>
    132<tr>
    133<td></td>
    134<td align="right"><b>Binaries</b></td>
    135<td></td>
    136<td align="left">
    137<a href="https://sourceforge.net/projects/glew/files/glew/2.1.0/glew-2.1.0-win32.zip/download">Windows 32-bit and 64-bit</a>
    138</td>
    139<td></td>
    140</tr>
    141</table>
    142</tr>
    143</table>
    144
    145<p></p>
    146<p>
    147An up-to-date copy is also available using <a href="http://git-scm.com/">git</a>:
    148</p>
    149<ul>
    150<li><a href="https://github.com/nigels-com/glew">github</a><br/>
    151<tt>git clone https://github.com/nigels-com/glew.git glew</tt><br/>&nbsp;</li>
    152</ul>
    153
    154<h2>Supported Extensions</h2>
    155<p>
    156The latest release contains support for OpenGL 4.6, compatibility and forward-compatible contexts and the following extensions:
    157</p>
    158<ul>
    159<li><a href="glew.html">OpenGL extensions</a>
    160<li><a href="wglew.html">WGL extensions</a>
    161<li><a href="glxew.html">GLX extensions</a>
    162</ul>
    163
    164<h2>News</h2>
    165<ul>
    166<li>[07-31-17] <a href="https://sourceforge.net/projects/glew/files/glew/2.1.0/">GLEW 2.1.0</a> adds support for OpenGL 4.6, new extensions and minor bug fixes</li>
    167<li>[07-24-16] <a href="https://sourceforge.net/projects/glew/files/glew/2.0.0/">GLEW 2.0.0</a> adds support for forward-compatible contexts, adds new extensions, OSMesa and EGL support, MX discontinued and minor bug fixes</li>
    168<li>[08-10-15] <a href="https://sourceforge.net/projects/glew/files/glew/1.13.0/">GLEW 1.13.0</a> adds support for new extensions, fixes minor bugs</li>
    169<li>[26-01-15] <a href="https://sourceforge.net/projects/glew/files/glew/1.12.0/">GLEW 1.12.0</a> fixes minor bugs and adds new extensions</li>
    170<li>[08-11-14] <a href="https://sourceforge.net/projects/glew/files/glew/1.11.0/">GLEW 1.11.0</a> adds support for OpenGL 4.5, new extensions</li>
    171<li>[07-22-13] <a href="https://sourceforge.net/projects/glew/files/glew/1.10.0/">GLEW 1.10.0</a> adds support for OpenGL 4.4, new extensions</li>
    172<li>[08-06-12] <a href="https://sourceforge.net/projects/glew/files/glew/1.9.0/">GLEW 1.9.0</a> adds support for OpenGL 4.3, new extensions</li>
    173<li>[07-17-12] <a href="https://sourceforge.net/projects/glew/files/glew/1.8.0/">GLEW 1.8.0</a> fixes minor bugs and adds new extensions</li>
    174<li>[08-26-11] <a href="https://sourceforge.net/projects/glew/files/glew/1.7.0/">GLEW 1.7.0</a> adds support for OpenGL 4.2, new extensions, fixes bugs</li>
    175<li>[04-27-11] <a href="https://sourceforge.net/projects/glew/files/glew/1.6.0/">GLEW 1.6.0</a> fixes minor bugs and adds eight new extensions</li>
    176<li>[01-31-11] <a href="https://sourceforge.net/projects/glew/files/glew/1.5.8/">GLEW 1.5.8</a> fixes minor bugs and adds two new extensions</li>
    177<li>[11-03-10] <a href="https://sourceforge.net/projects/glew/files/glew/1.5.7/">GLEW 1.5.7</a> fixes minor bugs and adds one new extension</li>
    178<li>[09-07-10] <a href="https://sourceforge.net/projects/glew/files/glew/1.5.6/">GLEW 1.5.6</a> adds support for OpenGL 4.1, fixes bugs</li>
    179<li>[07-13-10] <a href="https://sourceforge.net/projects/glew/files/glew/1.5.5/">GLEW 1.5.5</a> fixes minor bugs and adds new extensions</li>
    180<li>[04-21-10] <a href="https://sourceforge.net/projects/glew/files/glew/1.5.4/">GLEW 1.5.4</a> adds support for OpenGL 3.3, OpenGL 4.0 and new extensions, fixes bugs</li>
    181<li>[02-28-10] <a href="https://sourceforge.net/projects/glew/files/glew/1.5.3/">GLEW 1.5.3</a> fixes minor bugs and adds three new extensions</li>
    182<li>[12-31-09] <a href="https://sourceforge.net/projects/glew/files/glew/1.5.2/">GLEW 1.5.2</a> adds support for OpenGL 3.1, OpenGL 3.2 and new extensions</li>
    183<li>[11-03-08] <a href="https://sourceforge.net/project/showfiles.php?group_id=67586&amp;package_id=67942&amp;release_id=637800">GLEW 1.5.1</a> adds support for OpenGL 3.0 and 31 new extensions</li>
    184<li>[12-27-07] <a href="https://sourceforge.net/project/showfiles.php?group_id=67586&amp;package_id=67942&amp;release_id=564464">GLEW 1.5.0</a> is released under less restrictive licenses</li>
    185<li>[04-27-07] <a href="https://sourceforge.net/project/showfiles.php?group_id=67586&amp;package_id=67942&amp;release_id=504079">GLEW 1.4.0</a> is released</li>
    186<li>[03-08-07] GLEW is included in the <a href="http://developer.nvidia.com/object/sdk_home.html">NVIDIA OpenGL SDK</a></li>
    187<li>[03-04-07] <a href="https://sourceforge.net/project/showfiles.php?group_id=67586&amp;package_id=67942&amp;release_id=491113">GLEW 1.3.6</a> is released</li>
    188<li>[02-28-07] <a href="http://glew.svn.sourceforge.net/svnroot/glew/trunk/glew/">Repository</a> is migrated to SVN</li>
    189<li>[02-25-07] GLEW is included in the <a href="http://www.opengl.org/sdk/">OpenGL SDK</a></li>
    190<li>[11-21-06] <a href="https://sourceforge.net/project/showfiles.php?group_id=67586&amp;package_id=67942&amp;release_id=465334">GLEW 1.3.5</a> adds OpenGL 2.1 and NVIDIA G80 extensions</li>
    191<li>[03-04-06] <a href="https://sourceforge.net/project/showfiles.php?group_id=67586&amp;package_id=67942&amp;release_id=398455">GLEW 1.3.4</a> adds support for five new extensions</li>
    192<li>[05-16-05] <a href="https://sourceforge.net/project/showfiles.php?group_id=67586&amp;package_id=67942&amp;release_id=327647">GLEW 1.3.3</a> is released</li>
    193<li>[03-16-05] <a href="https://sourceforge.net/project/showfiles.php?group_id=67586&amp;package_id=67942&amp;release_id=313345">GLEW 1.3.2</a> adds support for GL_APPLE_pixel_buffer</li>
    194<li>[02-11-05] <a href="http://gljava.sourceforge.net/">gljava</a> and <a href="http://sdljava.sourceforge.net/">sdljava</a> provide a Java binding to OpenGL via GLEW</li>
    195<li>[02-02-05] <a href="https://sourceforge.net/project/showfiles.php?group_id=67586&amp;package_id=67942&amp;release_id=302049">GLEW 1.3.1</a> adds support for <a href="http://www.opengl.org/documentation/extensions/EXT_framebuffer_object.txt">GL_EXT_framebuffer_object</a></li>
    196<li>[01-04-05] <a href="https://sourceforge.net/project/showfiles.php?group_id=67586&amp;package_id=67942&amp;release_id=294527">GLEW 1.3.0</a> adds core OpenGL 2.0 support plus many enhancements</li>
    197<li>[12-22-04] <a href="http://glewpy.sf.net/">GLEWpy</a> Python wrapper announced</li>
    198<li>[12-12-04] <a href="https://sourceforge.net/mail/?group_id=67586">Mailing lists</a> created on sourceforge</li>
    199<li>[12-06-04] <a href="http://sourceforge.net/project/showfiles.php?group_id=67586&amp;package_id=67942&amp;release_id=287948">GLEW 1.2.5</a> adds new extensions and support for FreeBSD</li>
    200</ul>
    201
    202<h2>Links</h2>
    203<ul>
    204<li><a href="http://www.opengl.org/sdk/">OpenGL Software Development Kit</a></li>
    205<li><a href="http://www.opengl.org/registry/">OpenGL Extension Registry</a></li>
    206<li><a href="https://www.opengl.org/wiki/OpenGL_Extension">OpenGL Wiki: Extensions</a></li>
    207<li><a href="http://developer.nvidia.com/nvidia-opengl-specs">NVIDIA OpenGL Extension Specifications</a></li>
    208<li><a href="http://developer.apple.com/library/mac/#documentation/GraphicsImaging/Conceptual/OpenGLExtensionsGuide/Reference/reference.html">Apple OpenGL Extensions Guide</a></li>
    209</ul>
    210
    211<!-- begin footer.html -->
    212</td></tr></table></body>
    213<!-- end footer.html -->
    214