diff options
author | Vinson Lee <vlee@vmware.com> | 2010-01-28 15:11:39 -0800 |
---|---|---|
committer | Vinson Lee <vlee@vmware.com> | 2010-01-28 15:11:39 -0800 |
commit | c6db7ad6c7121aa8e139994cc8cf0886454cc3d8 (patch) | |
tree | 1fe2d4e37a62fcd28a15c5616c6be56eaa75443f /src | |
parent | af0a98ee9f6bdf4685b5db7651dacea45a864a64 (diff) |
progs/tests: Remove unnecessary headers.
Diffstat (limited to 'src')
-rw-r--r-- | src/tests/arraytexture.c | 1 | ||||
-rw-r--r-- | src/tests/bug_3195.c | 1 | ||||
-rw-r--r-- | src/tests/cva.c | 1 | ||||
-rw-r--r-- | src/tests/mipgen.c | 2 | ||||
-rw-r--r-- | src/tests/mipmap_comp.c | 2 | ||||
-rw-r--r-- | src/tests/mipmap_comp_tests.c | 2 | ||||
-rw-r--r-- | src/tests/mipmap_view.c | 1 | ||||
-rw-r--r-- | src/tests/no_s3tc.c | 1 | ||||
-rw-r--r-- | src/tests/streaming_rect.c | 2 | ||||
-rw-r--r-- | src/tests/zcomp.c | 1 |
10 files changed, 0 insertions, 14 deletions
diff --git a/src/tests/arraytexture.c b/src/tests/arraytexture.c index 28252a35..e4e86b9b 100644 --- a/src/tests/arraytexture.c +++ b/src/tests/arraytexture.c @@ -36,7 +36,6 @@ #include <math.h> #include <GL/glew.h> #include <GL/glut.h> -#include <GL/glext.h> #if !defined(GL_EXT_texture_array) && !defined(GL_MESA_texture_array) # error "This demo requires enums for either GL_EXT_texture_array or GL_MESA_texture_array to build." diff --git a/src/tests/bug_3195.c b/src/tests/bug_3195.c index a075b94e..3574c1f7 100644 --- a/src/tests/bug_3195.c +++ b/src/tests/bug_3195.c @@ -38,7 +38,6 @@ #include <math.h> #include <GL/glew.h> #include <GL/glut.h> -#include <GL/glext.h> #include "readtex.h" diff --git a/src/tests/cva.c b/src/tests/cva.c index 02d1dcba..b3e041c2 100644 --- a/src/tests/cva.c +++ b/src/tests/cva.c @@ -17,7 +17,6 @@ #define GL_GLEXT_LEGACY #include <GL/glew.h> #include <GL/glut.h> -#include <GL/glext.h> GLfloat verts[][4] = { { -0.5, -0.5, -2.0, 0.0 }, diff --git a/src/tests/mipgen.c b/src/tests/mipgen.c index 088f6432..48e52c9c 100644 --- a/src/tests/mipgen.c +++ b/src/tests/mipgen.c @@ -48,8 +48,6 @@ #include <GL/glew.h> #include <GL/glut.h> -#include "readtex.h" - static GLfloat LodBias = 6.0; /* make smallest miplevel visible */ static GLuint texImage; diff --git a/src/tests/mipmap_comp.c b/src/tests/mipmap_comp.c index dd223211..122d1579 100644 --- a/src/tests/mipmap_comp.c +++ b/src/tests/mipmap_comp.c @@ -48,8 +48,6 @@ #include <GL/glew.h> #include <GL/glut.h> -#include "readtex.h" - #define SIZE 16 /* not larger then 16 */ static GLint BaseLevel = 0, MaxLevel = 9; diff --git a/src/tests/mipmap_comp_tests.c b/src/tests/mipmap_comp_tests.c index e865b30a..b93a5c61 100644 --- a/src/tests/mipmap_comp_tests.c +++ b/src/tests/mipmap_comp_tests.c @@ -48,8 +48,6 @@ #include <GL/glew.h> #include <GL/glut.h> -#include "readtex.h" - #define SIZE 16 /* not larger then 16 */ static GLint BaseLevel = 0, MaxLevel ; diff --git a/src/tests/mipmap_view.c b/src/tests/mipmap_view.c index 808d3486..eb521970 100644 --- a/src/tests/mipmap_view.c +++ b/src/tests/mipmap_view.c @@ -12,7 +12,6 @@ #include <math.h> #include <GL/glew.h> #include <GL/glut.h> -#include <GL/glext.h> #include "readtex.h" diff --git a/src/tests/no_s3tc.c b/src/tests/no_s3tc.c index 31cfb40b..c4132cd9 100644 --- a/src/tests/no_s3tc.c +++ b/src/tests/no_s3tc.c @@ -40,7 +40,6 @@ #include <string.h> #include <GL/glew.h> #include <GL/glut.h> -#include <GL/glext.h> static unsigned data[16]; diff --git a/src/tests/streaming_rect.c b/src/tests/streaming_rect.c index f65ac4ce..3b016e55 100644 --- a/src/tests/streaming_rect.c +++ b/src/tests/streaming_rect.c @@ -13,8 +13,6 @@ #include <GL/glew.h> #include <GL/glut.h> -#include "readtex.h" - #define ANIMATE 10 #define PBO 11 diff --git a/src/tests/zcomp.c b/src/tests/zcomp.c index 15e35f17..d6b9c070 100644 --- a/src/tests/zcomp.c +++ b/src/tests/zcomp.c @@ -7,7 +7,6 @@ #include <math.h> #include <GL/glew.h> #include <GL/glut.h> -#include "../util/showbuffer.c" static int Win; |