Clone of mesa.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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 */