diff options
author | Rafael Antognolli <rafael.antognolli@intel.com> | 2017-10-20 11:43:01 -0700 |
---|---|---|
committer | Rafael Antognolli <rafael.antognolli@intel.com> | 2017-10-20 11:43:16 -0700 |
commit | 2514f3c794bffb0baf1e6d7b4796a048ed78e3f5 (patch) | |
tree | f09365d4ac8d5a5722ba9385acd001fc5acb8e90 | |
parent | 653d8f482014c30cf1aca8a35307782c0afa7756 (diff) |
Draw the triangle a million times.wip/texsubimage-hacked
-rw-r--r-- | tests/texturing/texsubimage.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/texturing/texsubimage.c b/tests/texturing/texsubimage.c index 33d96e328..ac6ecea75 100644 --- a/tests/texturing/texsubimage.c +++ b/tests/texturing/texsubimage.c @@ -232,8 +232,8 @@ piglit_draw_rect_tex3d(float x, float y, float w, float h, /* glEnableClientState(GL_TEXTURE_COORD_ARRAY); */ glEnableClientState(GL_COLOR_ARRAY); - /* int total = 100000; */ - int total = 5; + int total = 1000000; + /* int total = 5; */ for (int i = 0; i < total; i++) { glDrawArrays(GL_TRIANGLE_STRIP, 0, 3); } |