diff options
author | Brian Paul <[email protected]> | 2009-10-01 12:58:36 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-10-01 13:14:48 -0600 |
commit | ca1bda552d1cd1a6ddc911e535681a10b9c2d846 (patch) | |
tree | e781dc211d35fe3756a7e6cb90bfa9c4c919e242 /progs/objviewer/skybox.h | |
parent | e32a341be66391e0ea1cc6ce19bbd57997f46b6b (diff) |
progs/objviewer: Wavefront .obj file loader/viewer demo
Adapted from code written by Nate Robins. See README.txt.
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 */ |