summaryrefslogtreecommitdiff
path: root/tests/fbo
diff options
context:
space:
mode:
authorMarek Olšák <maraeo@gmail.com>2013-06-01 03:35:34 +0200
committerMarek Olšák <maraeo@gmail.com>2013-06-12 16:38:30 +0200
commitdbd97ca7baf645e4fd1af78683f84736375786d6 (patch)
treee1e931c2d32e6b31902e91ad7d63865f400f3c0d /tests/fbo
parentefef6d639fb4c620d11b542c5a85bc14fd7e1e78 (diff)
Always print what is being probed
Reviewed-by: Paul Berry <stereotype441@gmail.com>
Diffstat (limited to 'tests/fbo')
-rw-r--r--tests/fbo/fbo-pbo-readpixels-small.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/fbo/fbo-pbo-readpixels-small.c b/tests/fbo/fbo-pbo-readpixels-small.c
index a56541661..8c0ebb019 100644
--- a/tests/fbo/fbo-pbo-readpixels-small.c
+++ b/tests/fbo/fbo-pbo-readpixels-small.c
@@ -82,7 +82,7 @@ static GLboolean
probe(int x, int y, uint32_t expected, uint32_t observed)
{
if ((expected & 0xffffff) != (observed & 0xffffff)) {
- printf("Probe at (%i,%i)\n", x, y);
+ printf("Probe color at (%i,%i)\n", x, y);
printf(" Expected: 0x%08x\n", expected);
printf(" Observed: 0x%08x\n", observed);