mirror of
https://git.code.sf.net/p/quake/website
synced 2024-11-10 15:22:13 +00:00
added the engines and faq listings
This commit is contained in:
parent
fa65563cc0
commit
0a33fa9a1a
2 changed files with 69 additions and 0 deletions
35
research/engines.php
Normal file
35
research/engines.php
Normal file
|
@ -0,0 +1,35 @@
|
|||
<?PHP
|
||||
$sitename = "The QuakeForge Project";
|
||||
$pagename = "Rendering engines/Concepts";
|
||||
require("../parts/library.php"); // Load function library
|
||||
include("../parts/head.php"); // Load the HEAD and open BODY
|
||||
include("../parts/topstrip.php"); // Display top strip
|
||||
include("../parts/titletable.php"); // Display main title w/ logos
|
||||
?>
|
||||
<TABLE width="100%" cellspacing=0 cellpadding=0 border=0>
|
||||
<TR valign="top">
|
||||
<?php
|
||||
include("../parts/menu.php"); // Import left-side menus
|
||||
tableSpacer( 1, 9, 1, "black"); // Separate content from menus
|
||||
?>
|
||||
<TD width="100%">
|
||||
<?php
|
||||
$focused = "none"; // name of focused icon
|
||||
include( "../parts/topmain.php" ); // Display content top table
|
||||
?>
|
||||
<P>
|
||||
<br><a href="http://www.bigpanda.com/trinity/">"Let's Write a Quake 3 Graphics Engine in OpenGL!"</a><br>
|
||||
<br><a href="http://www.berkelium.com/OpenGL/GDC99/multitexture.html">Good explaination and examples of ARB_multitexture.</a><br>
|
||||
</TD>
|
||||
<?php
|
||||
tableSpacer( 1, 9, 1, "black");
|
||||
?>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD COLSPAN="4">
|
||||
<?php
|
||||
include("../parts/copyright.php");
|
||||
?>
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
34
research/faq.php
Normal file
34
research/faq.php
Normal file
|
@ -0,0 +1,34 @@
|
|||
<?PHP
|
||||
$sitename = "The QuakeForge Project";
|
||||
$pagename = "3D Development FAQs";
|
||||
require("../parts/library.php"); // Load function library
|
||||
include("../parts/head.php"); // Load the HEAD and open BODY
|
||||
include("../parts/topstrip.php"); // Display top strip
|
||||
include("../parts/titletable.php"); // Display main title w/ logos
|
||||
?>
|
||||
<TABLE width="100%" cellspacing=0 cellpadding=0 border=0>
|
||||
<TR valign="top">
|
||||
<?php
|
||||
include("../parts/menu.php"); // Import left-side menus
|
||||
tableSpacer( 1, 9, 1, "black"); // Separate content from menus
|
||||
?>
|
||||
<TD width="100%">
|
||||
<?php
|
||||
$focused = "none"; // name of focused icon
|
||||
include( "../parts/topmain.php" ); // Display content top table
|
||||
?>
|
||||
<P>
|
||||
<br><a href="http://spaceman.nu/opengl/">FAQ from EFNet #opengl</a><br>
|
||||
</TD>
|
||||
<?php
|
||||
tableSpacer( 1, 9, 1, "black");
|
||||
?>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD COLSPAN="4">
|
||||
<?php
|
||||
include("../parts/copyright.php");
|
||||
?>
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
Loading…
Reference in a new issue