Menu

[r1502]: / trunk / LWJGL / www / documentation.php  Maximize  Restore  History

Download this file

33 lines (29 with data), 960 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
require 'include/default.php';
printHeader(null, null);
printMenu("documentation");
if(isset($HTTP_GET_VARS['page'])) {
$page = $HTTP_GET_VARS['page'] . ".php";
if (file_exists($page) AND !preg_match("#^\.\./#", $page)) {
include($page);
} else {
echo "<p align=\"center\">You have reached this page because of an error. Please contact <a href=\"mailto:info@lwjgl.org\">info@lwjgl.org</a> and report the error.</p>";
}
} else {
?>
<!-- Introduction -->
<div class="paragraph_item">
<h2>Documentation</h2>
<p>
Here you will find documentation for LWJGL. You are encouraged to submit tutorials for fame and glory!
</p>
<p>
<a href="/javadoc" target="_blank">LWJGL javadoc</a><br><br>
<a href="http://lwjgl.org/wiki/tiki-index.php">LWJGL Wiki</a><br><br>
<a href="?page=tutorials/openal/devmaster/lesson1">Using OpenAL</a>
</p>
</div>
<?php
}
printFooter();
?>
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.