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

Classes

struct  stVertex
 

Macros

#define WINDOW_NAME   "Texture Mapping 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 gSquareData []
 
unsigned int gSquareIndices []
 
const int gNumSquareIndices = 6
 
Ult::VertexDescriptor gDesc
 
Ult::TextureShadergTexShdrEfct = nullptr
 
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   "Texture Mapping 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

◆ gDesc

◆ gNumSquareIndices

const int gNumSquareIndices = 6

◆ gOldXRot

int gOldXRot = 0

◆ gOldYRot

int gOldYRot = 0

◆ gQuitDemo

bool gQuitDemo = false

◆ gRender

◆ gSquareData

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

◆ gSquareIndices

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

◆ gTexShdrEfct

Ult::TextureShader* gTexShdrEfct = nullptr

◆ gXRot

int gXRot = 0

◆ gYRot

int gYRot = 0