This repository has been archived on 2024-06-25. You can view files and clone it, but cannot push or open issues or pull requests.
FreeGLUT-Vita/freeglut/web-src/basic_page.php

15 lines
571 B
PHP
Raw Normal View History

<?php
require("template.php");
# Now set the title of the page:
setPageTitle("Basic Page");
# Make the header.
generateHeader($_SERVER['PHP_SELF']);
?>
<div class="textheader">What?</div>
<p>freeglut is a completely OpenSourced alternative to the OpenGL Utility Toolkit (GLUT) library. GLUT was originally written by Mark Kilgard to support the sample programs in the second edition OpenGL 'RedBook'. Since then, GLUT has been used in a wide variety of practical applications because it is simple, widely available and highly portable.</p>
<?php generateFooter(); ?>