Clone of mesa.
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.

skybox.h 388B

123456789101112131415161718
  1. #ifndef SKYBOX_H
  2. #define SKYBOX_H
  3. extern GLuint
  4. LoadSkyBoxCubeTexture(const char *filePosX,
  5. const char *fileNegX,
  6. const char *filePosY,
  7. const char *fileNegY,
  8. const char *filePosZ,
  9. const char *fileNegZ);
  10. extern void
  11. DrawSkyBoxCubeTexture(GLuint tex);
  12. #endif /* SKYBOX_H */