summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2012-10-30 14:29:25 -0600
committerBrian Paul <brianp@vmware.com>2012-10-30 14:29:42 -0600
commit39364e9fb0604a5b6b371e6e8f47a35ef3bb314a (patch)
treeafd13926638c449f2c038a38b0df4fdd543bc7c9 /tests
parent307c736c0380a05662cde9cfd0a50771b1c43413 (diff)
point-line-no-cull: fix array index typo
Diffstat (limited to 'tests')
-rw-r--r--tests/general/point-line-no-cull.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/general/point-line-no-cull.c b/tests/general/point-line-no-cull.c
index 5c6b20aa..027d5f80 100644
--- a/tests/general/point-line-no-cull.c
+++ b/tests/general/point-line-no-cull.c
@@ -58,7 +58,7 @@ black_pixel(float x, float y)
pixel[0][2] == 0.0 &&
pixel[1][0] == 0.0 &&
pixel[1][1] == 0.0 &&
- pixel[2][2] == 0.0)
+ pixel[1][2] == 0.0)
return GL_TRUE;
else
return GL_FALSE;