diff options
author | Brian Paul <brianp@vmware.com> | 2014-04-28 17:52:48 -0600 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2014-04-29 18:26:58 -0600 |
commit | 0f163d1dc21a7c0c49e3301fe4162ff10317b882 (patch) | |
tree | 31e50299f72d4413de38da8d706e7847d1a55f30 | |
parent | 79bc28915e4efd9238533ab9f069f68e0109c410 (diff) |
fbo: use default window size for fbo tests
No regressions with NVIDIA's driver or llvmpipe.
Reviewed-by: José Fonseca <jfonseca@vmware.com>
-rw-r--r-- | tests/fbo/fbo-alpha.c | 2 | ||||
-rw-r--r-- | tests/fbo/fbo-alphatest-formats.c | 2 | ||||
-rw-r--r-- | tests/fbo/fbo-blending-formats.c | 2 | ||||
-rw-r--r-- | tests/fbo/fbo-blit-d24s8.c | 2 | ||||
-rw-r--r-- | tests/fbo/fbo-blit.c | 2 | ||||
-rw-r--r-- | tests/fbo/fbo-copypix.c | 2 | ||||
-rw-r--r-- | tests/fbo/fbo-drawbuffers-arbfp.c | 2 | ||||
-rw-r--r-- | tests/fbo/fbo-drawbuffers2-blend.c | 2 | ||||
-rw-r--r-- | tests/fbo/fbo-drawbuffers2-colormask.c | 2 | ||||
-rw-r--r-- | tests/fbo/fbo-luminance-alpha.c | 2 | ||||
-rw-r--r-- | tests/fbo/fbo-mrt-alphatest.c | 2 | ||||
-rw-r--r-- | tests/fbo/fbo-nodepth-test.c | 2 | ||||
-rw-r--r-- | tests/fbo/fbo-nostencil-test.c | 2 | ||||
-rw-r--r-- | tests/fbo/fbo-readdrawpix.c | 2 | ||||
-rw-r--r-- | tests/fbo/fbo-rg.c | 2 | ||||
-rw-r--r-- | tests/fbo/fbo-srgb-blit.c | 2 | ||||
-rw-r--r-- | tests/fbo/fbo-srgb.c | 2 | ||||
-rw-r--r-- | tests/fbo/fbo-stencil.c | 2 | ||||
-rw-r--r-- | tests/fbo/fbo-sys-blit.c | 2 | ||||
-rw-r--r-- | tests/fbo/fbo-sys-sub-blit.c | 2 |
20 files changed, 0 insertions, 40 deletions
diff --git a/tests/fbo/fbo-alpha.c b/tests/fbo/fbo-alpha.c index 1ac65d070..6218bcd24 100644 --- a/tests/fbo/fbo-alpha.c +++ b/tests/fbo/fbo-alpha.c @@ -37,8 +37,6 @@ PIGLIT_GL_TEST_CONFIG_BEGIN config.supports_gl_compat_version = 10; - config.window_width = 128; - config.window_height = 128; config.window_visual = PIGLIT_GL_VISUAL_RGBA | PIGLIT_GL_VISUAL_DOUBLE; PIGLIT_GL_TEST_CONFIG_END diff --git a/tests/fbo/fbo-alphatest-formats.c b/tests/fbo/fbo-alphatest-formats.c index 04f0db8b5..ab2ea0333 100644 --- a/tests/fbo/fbo-alphatest-formats.c +++ b/tests/fbo/fbo-alphatest-formats.c @@ -34,8 +34,6 @@ PIGLIT_GL_TEST_CONFIG_BEGIN config.supports_gl_compat_version = 10; - config.window_width = 128; - config.window_height = 64; config.window_visual = PIGLIT_GL_VISUAL_RGBA | PIGLIT_GL_VISUAL_DOUBLE; PIGLIT_GL_TEST_CONFIG_END diff --git a/tests/fbo/fbo-blending-formats.c b/tests/fbo/fbo-blending-formats.c index 586d80a51..725be69a4 100644 --- a/tests/fbo/fbo-blending-formats.c +++ b/tests/fbo/fbo-blending-formats.c @@ -34,8 +34,6 @@ PIGLIT_GL_TEST_CONFIG_BEGIN config.supports_gl_compat_version = 10; - config.window_width = 128; - config.window_height = 64; config.window_visual = PIGLIT_GL_VISUAL_RGBA | PIGLIT_GL_VISUAL_DOUBLE; PIGLIT_GL_TEST_CONFIG_END diff --git a/tests/fbo/fbo-blit-d24s8.c b/tests/fbo/fbo-blit-d24s8.c index fe8c30d71..26500d7b3 100644 --- a/tests/fbo/fbo-blit-d24s8.c +++ b/tests/fbo/fbo-blit-d24s8.c @@ -42,8 +42,6 @@ PIGLIT_GL_TEST_CONFIG_BEGIN config.supports_gl_compat_version = 10; - config.window_width = 150; - config.window_height = 150; config.window_visual = PIGLIT_GL_VISUAL_RGB | PIGLIT_GL_VISUAL_DOUBLE | PIGLIT_GL_VISUAL_STENCIL | PIGLIT_GL_VISUAL_DEPTH; PIGLIT_GL_TEST_CONFIG_END diff --git a/tests/fbo/fbo-blit.c b/tests/fbo/fbo-blit.c index 8c6dad879..845ed7df2 100644 --- a/tests/fbo/fbo-blit.c +++ b/tests/fbo/fbo-blit.c @@ -40,8 +40,6 @@ PIGLIT_GL_TEST_CONFIG_BEGIN config.supports_gl_compat_version = 10; - config.window_width = 150; - config.window_height = 150; config.window_visual = PIGLIT_GL_VISUAL_RGB | PIGLIT_GL_VISUAL_DOUBLE; PIGLIT_GL_TEST_CONFIG_END diff --git a/tests/fbo/fbo-copypix.c b/tests/fbo/fbo-copypix.c index e6e841d2c..2b4b6a61d 100644 --- a/tests/fbo/fbo-copypix.c +++ b/tests/fbo/fbo-copypix.c @@ -37,8 +37,6 @@ PIGLIT_GL_TEST_CONFIG_BEGIN config.supports_gl_compat_version = 10; - config.window_width = 150; - config.window_height = 150; config.window_visual = PIGLIT_GL_VISUAL_RGB | PIGLIT_GL_VISUAL_DOUBLE; PIGLIT_GL_TEST_CONFIG_END diff --git a/tests/fbo/fbo-drawbuffers-arbfp.c b/tests/fbo/fbo-drawbuffers-arbfp.c index 12bb895ea..6ff86e2c5 100644 --- a/tests/fbo/fbo-drawbuffers-arbfp.c +++ b/tests/fbo/fbo-drawbuffers-arbfp.c @@ -38,8 +38,6 @@ PIGLIT_GL_TEST_CONFIG_BEGIN config.supports_gl_compat_version = 10; - config.window_width = 128; - config.window_height = 128; config.window_visual = PIGLIT_GL_VISUAL_RGBA | PIGLIT_GL_VISUAL_DOUBLE; PIGLIT_GL_TEST_CONFIG_END diff --git a/tests/fbo/fbo-drawbuffers2-blend.c b/tests/fbo/fbo-drawbuffers2-blend.c index acd4b2e91..0a494aa57 100644 --- a/tests/fbo/fbo-drawbuffers2-blend.c +++ b/tests/fbo/fbo-drawbuffers2-blend.c @@ -37,8 +37,6 @@ PIGLIT_GL_TEST_CONFIG_BEGIN config.supports_gl_compat_version = 10; - config.window_width = 128; - config.window_height = 128; config.window_visual = PIGLIT_GL_VISUAL_RGB | PIGLIT_GL_VISUAL_DOUBLE; PIGLIT_GL_TEST_CONFIG_END diff --git a/tests/fbo/fbo-drawbuffers2-colormask.c b/tests/fbo/fbo-drawbuffers2-colormask.c index f0eb67f01..36cdd60df 100644 --- a/tests/fbo/fbo-drawbuffers2-colormask.c +++ b/tests/fbo/fbo-drawbuffers2-colormask.c @@ -37,8 +37,6 @@ PIGLIT_GL_TEST_CONFIG_BEGIN config.supports_gl_compat_version = 10; - config.window_width = 128; - config.window_height = 128; config.window_visual = PIGLIT_GL_VISUAL_RGB | PIGLIT_GL_VISUAL_DOUBLE; PIGLIT_GL_TEST_CONFIG_END diff --git a/tests/fbo/fbo-luminance-alpha.c b/tests/fbo/fbo-luminance-alpha.c index dd6ee0aba..5de8eb5a9 100644 --- a/tests/fbo/fbo-luminance-alpha.c +++ b/tests/fbo/fbo-luminance-alpha.c @@ -39,8 +39,6 @@ PIGLIT_GL_TEST_CONFIG_BEGIN config.supports_gl_compat_version = 10; - config.window_width = 128; - config.window_height = 128; config.window_visual = PIGLIT_GL_VISUAL_RGBA | PIGLIT_GL_VISUAL_DOUBLE; PIGLIT_GL_TEST_CONFIG_END diff --git a/tests/fbo/fbo-mrt-alphatest.c b/tests/fbo/fbo-mrt-alphatest.c index 3c703c39e..fb78df185 100644 --- a/tests/fbo/fbo-mrt-alphatest.c +++ b/tests/fbo/fbo-mrt-alphatest.c @@ -40,8 +40,6 @@ PIGLIT_GL_TEST_CONFIG_BEGIN config.supports_gl_compat_version = 21; - config.window_width = 128; - config.window_height = 64; config.window_visual = PIGLIT_GL_VISUAL_RGBA | PIGLIT_GL_VISUAL_DOUBLE; PIGLIT_GL_TEST_CONFIG_END diff --git a/tests/fbo/fbo-nodepth-test.c b/tests/fbo/fbo-nodepth-test.c index f46f75579..2f325919a 100644 --- a/tests/fbo/fbo-nodepth-test.c +++ b/tests/fbo/fbo-nodepth-test.c @@ -37,8 +37,6 @@ PIGLIT_GL_TEST_CONFIG_BEGIN config.supports_gl_compat_version = 10; - config.window_width = 128; - config.window_height = 128; config.window_visual = PIGLIT_GL_VISUAL_RGB | PIGLIT_GL_VISUAL_DOUBLE; PIGLIT_GL_TEST_CONFIG_END diff --git a/tests/fbo/fbo-nostencil-test.c b/tests/fbo/fbo-nostencil-test.c index b47076857..598d78773 100644 --- a/tests/fbo/fbo-nostencil-test.c +++ b/tests/fbo/fbo-nostencil-test.c @@ -37,8 +37,6 @@ PIGLIT_GL_TEST_CONFIG_BEGIN config.supports_gl_compat_version = 10; - config.window_width = 128; - config.window_height = 128; config.window_visual = PIGLIT_GL_VISUAL_RGB | PIGLIT_GL_VISUAL_DOUBLE; PIGLIT_GL_TEST_CONFIG_END diff --git a/tests/fbo/fbo-readdrawpix.c b/tests/fbo/fbo-readdrawpix.c index 62631615a..03cfd5d42 100644 --- a/tests/fbo/fbo-readdrawpix.c +++ b/tests/fbo/fbo-readdrawpix.c @@ -37,8 +37,6 @@ PIGLIT_GL_TEST_CONFIG_BEGIN config.supports_gl_compat_version = 10; - config.window_width = 150; - config.window_height = 150; config.window_visual = PIGLIT_GL_VISUAL_RGB | PIGLIT_GL_VISUAL_DOUBLE; PIGLIT_GL_TEST_CONFIG_END diff --git a/tests/fbo/fbo-rg.c b/tests/fbo/fbo-rg.c index ca5042ac3..0bcc198e6 100644 --- a/tests/fbo/fbo-rg.c +++ b/tests/fbo/fbo-rg.c @@ -48,8 +48,6 @@ PIGLIT_GL_TEST_CONFIG_BEGIN config.supports_gl_compat_version = 10; - config.window_width = 128; - config.window_height = 64; config.window_visual = PIGLIT_GL_VISUAL_DOUBLE | PIGLIT_GL_VISUAL_RGB; PIGLIT_GL_TEST_CONFIG_END diff --git a/tests/fbo/fbo-srgb-blit.c b/tests/fbo/fbo-srgb-blit.c index 105a82e23..6ffa4c99b 100644 --- a/tests/fbo/fbo-srgb-blit.c +++ b/tests/fbo/fbo-srgb-blit.c @@ -34,8 +34,6 @@ PIGLIT_GL_TEST_CONFIG_BEGIN config.supports_gl_compat_version = 10; - config.window_width = 128; - config.window_height = 128; config.window_visual = PIGLIT_GL_VISUAL_DOUBLE | PIGLIT_GL_VISUAL_RGB; PIGLIT_GL_TEST_CONFIG_END diff --git a/tests/fbo/fbo-srgb.c b/tests/fbo/fbo-srgb.c index bd2741ebd..031cfe9e0 100644 --- a/tests/fbo/fbo-srgb.c +++ b/tests/fbo/fbo-srgb.c @@ -39,8 +39,6 @@ PIGLIT_GL_TEST_CONFIG_BEGIN config.supports_gl_compat_version = 10; - config.window_width = 128; - config.window_height = 128; config.window_visual = PIGLIT_GL_VISUAL_RGB | PIGLIT_GL_VISUAL_DOUBLE; PIGLIT_GL_TEST_CONFIG_END diff --git a/tests/fbo/fbo-stencil.c b/tests/fbo/fbo-stencil.c index a743173fa..6530ae700 100644 --- a/tests/fbo/fbo-stencil.c +++ b/tests/fbo/fbo-stencil.c @@ -36,8 +36,6 @@ PIGLIT_GL_TEST_CONFIG_BEGIN config.supports_gl_compat_version = 10; - config.window_width = BUF_SIZE; - config.window_height = BUF_SIZE; config.window_visual = PIGLIT_GL_VISUAL_DOUBLE; PIGLIT_GL_TEST_CONFIG_END diff --git a/tests/fbo/fbo-sys-blit.c b/tests/fbo/fbo-sys-blit.c index 4561be30d..c4f074249 100644 --- a/tests/fbo/fbo-sys-blit.c +++ b/tests/fbo/fbo-sys-blit.c @@ -33,8 +33,6 @@ PIGLIT_GL_TEST_CONFIG_BEGIN config.supports_gl_compat_version = 10; - config.window_width = 128; - config.window_height = 128; config.window_visual = PIGLIT_GL_VISUAL_DOUBLE | PIGLIT_GL_VISUAL_RGB; config.requires_displayed_window = true; diff --git a/tests/fbo/fbo-sys-sub-blit.c b/tests/fbo/fbo-sys-sub-blit.c index a6e331e71..624876506 100644 --- a/tests/fbo/fbo-sys-sub-blit.c +++ b/tests/fbo/fbo-sys-sub-blit.c @@ -34,8 +34,6 @@ PIGLIT_GL_TEST_CONFIG_BEGIN config.supports_gl_compat_version = 10; - config.window_width = 128; - config.window_height = 128; config.window_visual = PIGLIT_GL_VISUAL_DOUBLE | PIGLIT_GL_VISUAL_RGB; config.requires_displayed_window = true; |