summaryrefslogtreecommitdiff
path: root/tests/texturing/depth-tex-modes-rg.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/texturing/depth-tex-modes-rg.c')
-rw-r--r--tests/texturing/depth-tex-modes-rg.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/texturing/depth-tex-modes-rg.c b/tests/texturing/depth-tex-modes-rg.c
index 4cf8aec01..61ab560f8 100644
--- a/tests/texturing/depth-tex-modes-rg.c
+++ b/tests/texturing/depth-tex-modes-rg.c
@@ -39,12 +39,16 @@ static const GLenum depth_texture_modes[] = {
#define TEST_ROWS 4
#define TEST_COLS ARRAY_SIZE(depth_texture_modes)
+#define TEST_WIDTH (1+(TEST_COLS*(BOX_SIZE+1)))
+#define TEST_HEIGHT (1+(TEST_ROWS*(BOX_SIZE+1)))
+
+
PIGLIT_GL_TEST_CONFIG_BEGIN
config.supports_gl_compat_version = 10;
- config.window_width = 1+(TEST_COLS*(BOX_SIZE+1));
- config.window_height = 1+(TEST_ROWS*(BOX_SIZE+1));
+ config.window_width = MAX2(TEST_WIDTH, config.window_width);
+ config.window_height = MAX2(TEST_HEIGHT, config.window_height);
config.window_visual = PIGLIT_GL_VISUAL_DOUBLE | PIGLIT_GL_VISUAL_RGB;
PIGLIT_GL_TEST_CONFIG_END