summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2019-03-08 17:35:17 -0800
committerIan Romanick <ian.d.romanick@intel.com>2019-06-26 08:31:49 -0700
commitdf7e19b909b28603861f805b10751ee7853f122d (patch)
tree61ba3b4227122dddc5b89d752577ed9dc9351edd
parent9ad62be49e8de054539d303b5640a53984575fe7 (diff)
Don't check for OpenGL 1.1
Seriously. The Linux OpenGL ABI has always required at least OpenGL 1.2. The Windows OpenGL ABI has always required at least OpenGL 1.1. I don't know what the Mac OS X ABI requires, but every supported device has had 1.1 at least as far back as 10.5.8. SGI O2 and Octane support at least OpenGL 1.1. I don't think piglit needs to fail gracefully on systems from before 1996.
-rw-r--r--tests/fast_color_clear/blit-between-clears.c1
-rw-r--r--tests/fast_color_clear/read-after-clear.c1
-rw-r--r--tests/fast_color_clear/read-to-pbo-after-clear.c1
-rw-r--r--tests/spec/arb_pipeline_statistics_query/pipeline_stats_frag.c1
4 files changed, 0 insertions, 4 deletions
diff --git a/tests/fast_color_clear/blit-between-clears.c b/tests/fast_color_clear/blit-between-clears.c
index 97a45292c..56842da04 100644
--- a/tests/fast_color_clear/blit-between-clears.c
+++ b/tests/fast_color_clear/blit-between-clears.c
@@ -55,7 +55,6 @@ piglit_init(int argc, char **argv)
GLenum fb_status;
/* Requirements */
- piglit_require_gl_version(11);
piglit_require_extension("GL_ARB_framebuffer_object");
/* Set up framebuffer */
diff --git a/tests/fast_color_clear/read-after-clear.c b/tests/fast_color_clear/read-after-clear.c
index 52b33ef82..c23d43a61 100644
--- a/tests/fast_color_clear/read-after-clear.c
+++ b/tests/fast_color_clear/read-after-clear.c
@@ -163,7 +163,6 @@ piglit_init(int argc, char **argv)
}
/* Requirements */
- piglit_require_gl_version(11);
piglit_require_vertex_shader();
piglit_require_fragment_shader();
piglit_require_extension("GL_ARB_framebuffer_object");
diff --git a/tests/fast_color_clear/read-to-pbo-after-clear.c b/tests/fast_color_clear/read-to-pbo-after-clear.c
index 2540d6f3f..d025b0fa0 100644
--- a/tests/fast_color_clear/read-to-pbo-after-clear.c
+++ b/tests/fast_color_clear/read-to-pbo-after-clear.c
@@ -79,7 +79,6 @@ piglit_init(int argc, char **argv)
GLuint vs, fs_paint_red, fs_sample;
/* Requirements */
- piglit_require_gl_version(11);
piglit_require_vertex_shader();
piglit_require_fragment_shader();
piglit_require_extension("GL_ARB_pixel_buffer_object");
diff --git a/tests/spec/arb_pipeline_statistics_query/pipeline_stats_frag.c b/tests/spec/arb_pipeline_statistics_query/pipeline_stats_frag.c
index a2cd444be..27b38c315 100644
--- a/tests/spec/arb_pipeline_statistics_query/pipeline_stats_frag.c
+++ b/tests/spec/arb_pipeline_statistics_query/pipeline_stats_frag.c
@@ -101,7 +101,6 @@ piglit_init(int argc, char *argv[])
{
GLuint prog;
- piglit_require_gl_version(11);
piglit_require_vertex_shader();
piglit_require_fragment_shader();