summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Faye-Lund <erik.faye-lund@collabora.com>2018-10-24 16:57:46 +0200
committerErik Faye-Lund <erik.faye-lund@collabora.com>2018-11-21 12:42:39 +0100
commit7dae4f8d3c4b4b25fb8ac8a8b3cdaca42b4cccfc (patch)
treee904e7c65b81d5ac3c88499d5245661e981debc1
parent132d07ec14f37dd4d54c42e033dd8b1efc029abb (diff)
texturing: make sure s3tc tests require GL 1.1
The EXT_texture_compression_s3tc spec lists that it requires OpenGL 1.1, not 1.0 like some of these list. In reality, this probably doesn't make a huge difference, as OpenGL 1.0 hardware/drivers are pretty much extinct, but let's just get it right to avoid confusion. Signed-off-by: Erik Faye-Lund <erik.faye-lund@collabora.com> Reviewed-by: Ilia Mirkin <imirkin@alum.mit.edu>
-rw-r--r--tests/texturing/s3tc-errors.c2
-rw-r--r--tests/texturing/s3tc-teximage.c2
-rw-r--r--tests/texturing/s3tc-texsubimage.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/tests/texturing/s3tc-errors.c b/tests/texturing/s3tc-errors.c
index 81fee3e21..ccedf8a22 100644
--- a/tests/texturing/s3tc-errors.c
+++ b/tests/texturing/s3tc-errors.c
@@ -36,7 +36,7 @@
PIGLIT_GL_TEST_CONFIG_BEGIN
- config.supports_gl_compat_version = 10;
+ config.supports_gl_compat_version = 11;
config.window_width = 200;
config.window_height = 200;
diff --git a/tests/texturing/s3tc-teximage.c b/tests/texturing/s3tc-teximage.c
index 07e04f729..a08feaa69 100644
--- a/tests/texturing/s3tc-teximage.c
+++ b/tests/texturing/s3tc-teximage.c
@@ -36,7 +36,7 @@
PIGLIT_GL_TEST_CONFIG_BEGIN
- config.supports_gl_compat_version = 10;
+ config.supports_gl_compat_version = 11;
config.window_width = 500;
config.window_height = 600;
diff --git a/tests/texturing/s3tc-texsubimage.c b/tests/texturing/s3tc-texsubimage.c
index 17d739a39..39b94938e 100644
--- a/tests/texturing/s3tc-texsubimage.c
+++ b/tests/texturing/s3tc-texsubimage.c
@@ -36,7 +36,7 @@
PIGLIT_GL_TEST_CONFIG_BEGIN
- config.supports_gl_compat_version = 10;
+ config.supports_gl_compat_version = 11;
config.window_width = 500;
config.window_height = 600;