Entries Categorized as 'peon-sdk'

BasicCube

Date February 12, 2008

/**
* This source code is part of the samples for “Game Programming in C++: Start to Finish”.
*
* @Author : Erik Yuzwa
* @Date : 09/01/2005
* @Version: 1.0
*
* @Goal: The purpose of this code sample is to demonstrate how to create a spinning/rotating
* cube using a display list.
*/
#include “PeonMain.h”

#define TEX_0 1

class MainApp : public peon::IApplication
{
private:
GLuint [...]

BasicApplication

Date February 12, 2008

/**
* This source code is part of the samples for “Game Programming in C++: Start to Finish”.
*
* It demonstrates the basic startup way of getting a Peon run application to work.
*
* @Author : Erik Yuzwa
* @Date : 09/01/2005
* @Version: 1.0
*
* @Goal: The goal of this sample is to demonstrate a real small sample [...]