blob: ea1f2d27ae20d9a7eb510c66ad8f91fb00058331 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef _FOG_H_
#define _FOG_H_
/**> HEADER FILES <**/
#include <GL/gl.h>
#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
|