aboutsummaryrefslogtreecommitdiff
path: root/src/types.h
diff options
context:
space:
mode:
authortaw27 <taw27@84d2e878-0bd5-11dd-ad15-13eda11d74c5>2008-05-31 15:16:29 +0000
committertaw27 <taw27@84d2e878-0bd5-11dd-ad15-13eda11d74c5>2008-05-31 15:16:29 +0000
commitd860c84c36bd83106b1473ca0066a8afc3db351d (patch)
treef9ba80ec2ef8b8bbaf69f894fb1d0e0619a46bf2 /src/types.h
parentb1ee6e9f6b39fb01f666c4462cdd433e5058f84c (diff)
Use GLEW
git-svn-id: svn://cook.msm.cam.ac.uk:745/thrust3d/thrust3d@54 84d2e878-0bd5-11dd-ad15-13eda11d74c5
Diffstat (limited to 'src/types.h')
-rw-r--r--src/types.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/types.h b/src/types.h
index 71e8de7..2059cbb 100644
--- a/src/types.h
+++ b/src/types.h
@@ -114,9 +114,9 @@ typedef struct {
typedef struct {
/* Lighting shaders */
- GLhandleARB lighting_vert;
- GLhandleARB lighting_frag;
- GLhandleARB lighting_program;
+ GLuint lighting_vert;
+ GLuint lighting_frag;
+ GLuint lighting_program;
/* Textures */
Texture textures[MAX_TEXTURES];
@@ -127,9 +127,9 @@ typedef struct {
GLuint fbodepth;
/* Swirlyness stuff */
- GLhandleARB swirly_vert;
- GLhandleARB swirly_frag;
- GLhandleARB swirly_program;
+ GLuint swirly_vert;
+ GLuint swirly_frag;
+ GLuint swirly_program;
GLuint swirly_fbo;
GLuint swirly_texture;