blob: a7e0c252c243696d600f67c533ae37bbee31cdc7 (
plain) (
blame)
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
|
#ifndef _FOG_H_
#define _FOG_H_
/**> HEADER FILES <**/
#ifdef OS9
#include <gl.h>
#else
#include <GL/gl.h>
#endif
#include "Quaternions.h"
class Fog{
public:
GLfloat fogColor[4];
GLint fogMode;
GLfloat fogDensity;
GLfloat fogStart;
GLfloat fogEnd;
void SetFog(float colorR, float colorG, float colorB, float fStart, float fEnd, float fogDensity);
void TempFog(float colorR, float colorG, float colorB);
void ResetFog();
};
#endif
|