Ult3D
Implementation of "Ultimate 3D Game Engine Design & Architecture" by Allan Sherrod
Loading...
Searching...
No Matches
testLuminance.cpp File Reference
#include <cassert>
#include <Ult/Shapes/Shapes.h>
#include <Ult/Input.h>
#include <Ult/Renderer/OpenGLRenderer.h>

Classes

struct  stVertex
 

Macros

#define WINDOW_NAME   "Luminance Test"
 
#define WINDOW_CLASS   "UPGCLASS"
 
#define WINDOW_WIDTH   800
 
#define WINDOW_HEIGHT   600
 
#define WINDOW_FULLSCREEN   0
 

Functions

void DemoResize (int width, int height)
 
bool DemoInitialize (Ult::RenderParams &params)
 
void DemoUpdate ()
 
void DemoRender ()
 
void DemoShutdown ()
 
int main ()
 

Variables

stVertex gBoxData []
 
unsigned int gBoxIndices []
 
const int gNumBoxIndices = 6
 
Ult::VertexDescriptor gDesc
 
Ult::Texture gTex
 
Ult::ShaderHandle gShader
 
Ult::ParameterHandle gDecalParam
 
int gXRot = 0
 
int gOldXRot = 0
 
int gYRot = 0
 
int gOldYRot = 0
 
Ult::OpenGLRenderer gRender
 
bool gQuitDemo = false
 

Macro Definition Documentation

◆ WINDOW_CLASS

#define WINDOW_CLASS   "UPGCLASS"

◆ WINDOW_FULLSCREEN

#define WINDOW_FULLSCREEN   0

◆ WINDOW_HEIGHT

#define WINDOW_HEIGHT   600

◆ WINDOW_NAME

#define WINDOW_NAME   "Luminance Test"

◆ WINDOW_WIDTH

#define WINDOW_WIDTH   800

Function Documentation

◆ DemoInitialize()

bool DemoInitialize ( Ult::RenderParams & params)

◆ DemoRender()

void DemoRender ( )

◆ DemoResize()

void DemoResize ( int width,
int height )

◆ DemoShutdown()

void DemoShutdown ( )

◆ DemoUpdate()

void DemoUpdate ( )

◆ main()

int main ( )

Variable Documentation

◆ gBoxData

stVertex gBoxData[]
Initial value:
= {
{ +1,-1,-1, 1,0 },
{ -1,-1,-1, 0,0 },
{ -1,+1,-1, 0,1 },
{ +1,+1,-1, 1,1 }
}

◆ gBoxIndices

unsigned int gBoxIndices[]
Initial value:
= {
0,1,2,
2,3,0
}

◆ gDecalParam

Ult::ParameterHandle gDecalParam

◆ gDesc

◆ gNumBoxIndices

const int gNumBoxIndices = 6

◆ gOldXRot

int gOldXRot = 0

◆ gOldYRot

int gOldYRot = 0

◆ gQuitDemo

bool gQuitDemo = false

◆ gRender

◆ gShader

◆ gTex

◆ gXRot

int gXRot = 0

◆ gYRot

int gYRot = 0