diff options
Diffstat (limited to 'progs/objviewer/skybox.h')
-rw-r--r-- | progs/objviewer/skybox.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/progs/objviewer/skybox.h b/progs/objviewer/skybox.h new file mode 100644 index 00000000000..18bee51c870 --- /dev/null +++ b/progs/objviewer/skybox.h @@ -0,0 +1,18 @@ + +#ifndef SKYBOX_H +#define SKYBOX_H + + +extern GLuint +LoadSkyBoxCubeTexture(const char *filePosX, + const char *fileNegX, + const char *filePosY, + const char *fileNegY, + const char *filePosZ, + const char *fileNegZ); + +extern void +DrawSkyBoxCubeTexture(GLuint tex); + + +#endif /* SKYBOX_H */ |