diff options
author | Nicolai Hähnle <nhaehnle@gmail.com> | 2009-10-03 19:30:48 +0200 |
---|---|---|
committer | Nicolai Hähnle <nhaehnle@gmail.com> | 2009-10-03 19:30:48 +0200 |
commit | 6d25b9125ec1e66e0e255b0ee20fe18dfe1076fa (patch) | |
tree | c376951940eac2875567979a81e6a03a019942b7 /progs/objviewer/skybox.h | |
parent | 81c7561d9d3faf70ac22c6a5f3fbea18f53eed92 (diff) | |
parent | 7d2699aedc084d9cb9c2bd2f8bdb5f038271ac1e (diff) |
Merge branch 'master' into r300-compiler
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 0000000000..18bee51c87 --- /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 */ |