Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
379 B

  1. #ifndef FOG_H
  2. #define FOG_H
  3. typedef enum { FOG_EXP, FOG_EXP2, FOG_LINEAR } FogModeType;
  4. typedef struct {
  5. char acDummy1[16];
  6. BOOL bEnable;
  7. GLfloat fColor[4];
  8. GLfloat fDensity;
  9. GLfloat fLinearStart, fLinearEnd;
  10. int iMode;
  11. int iQuality;
  12. char acDummy2[16];
  13. } FOGDATA;
  14. void InitFD(FOGDATA *pfd);
  15. void fog_init(FOGDATA fd);
  16. #endif // FOG_H