diff options
author | Brian Paul <[email protected]> | 2010-04-08 13:09:01 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-04-08 13:11:29 -0600 |
commit | ffedd28c9c9f218efb989deb38451c3bfc0b1e0f (patch) | |
tree | 05409927341a7f14f9d79f2e89ec8ebfe190b967 /progs/tests | |
parent | bab6c0a03527f3d3b5124c6540cc167e3989c068 (diff) |
progs/tests: added some debug code (disabled)
Diffstat (limited to 'progs/tests')
-rw-r--r-- | progs/tests/zreaddraw.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/progs/tests/zreaddraw.c b/progs/tests/zreaddraw.c index 7740695bb66..4d27b3a505b 100644 --- a/progs/tests/zreaddraw.c +++ b/progs/tests/zreaddraw.c @@ -102,6 +102,19 @@ static void Display(void) /* read back scaled depth image */ glReadPixels(100, 0, 400, 400, GL_DEPTH_COMPONENT, GL_FLOAT, depth2); + + /* debug */ + if (0) { + int i; + float *z = depth2 + 400 * 200; + printf("z at y=200:\n"); + for (i = 0; i < 400; i++) { + printf("%5.3f ", z[i]); + if ((i + 1) % 12 == 0) + printf("\n"); + } + } + /* draw as luminance */ glPixelZoom(1.0, 1.0); glWindowPos2i(100, 0); |