diff options
author | Maciej Cencora <m.cencora@gmail.com> | 2010-03-10 20:21:13 +0100 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2010-03-10 12:42:38 -0700 |
commit | 028642b4042f3b95181932b05c8f521a54f68b92 (patch) | |
tree | 5e903aff4a04f0ed42b22b9e62e326895c6e0974 | |
parent | aec5aa5afd33220f432df4fa5c0c09265180d9c7 (diff) |
fbo-no(depth/stencil)test: use POT textures
-rw-r--r-- | tests/fbo/fbo-nodepth-test.c | 4 | ||||
-rw-r--r-- | tests/fbo/fbo-nostencil-test.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/tests/fbo/fbo-nodepth-test.c b/tests/fbo/fbo-nodepth-test.c index eedfc3f6b..6ffe21fb6 100644 --- a/tests/fbo/fbo-nodepth-test.c +++ b/tests/fbo/fbo-nodepth-test.c @@ -33,8 +33,8 @@ #include "piglit-util.h" -int piglit_width = 100; -int piglit_height = 100; +int piglit_width = 128; +int piglit_height = 128; int piglit_window_mode = GLUT_RGB | GLUT_DOUBLE; enum piglit_result diff --git a/tests/fbo/fbo-nostencil-test.c b/tests/fbo/fbo-nostencil-test.c index 561527313..a54889727 100644 --- a/tests/fbo/fbo-nostencil-test.c +++ b/tests/fbo/fbo-nostencil-test.c @@ -33,8 +33,8 @@ #include "piglit-util.h" -int piglit_width = 100; -int piglit_height = 100; +int piglit_width = 128; +int piglit_height = 128; int piglit_window_mode = GLUT_RGB | GLUT_DOUBLE; enum piglit_result |