diff options
author | Brian Paul <brianp@vmware.com> | 2012-10-30 14:29:25 -0600 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2012-10-30 14:29:42 -0600 |
commit | 39364e9fb0604a5b6b371e6e8f47a35ef3bb314a (patch) | |
tree | afd13926638c449f2c038a38b0df4fdd543bc7c9 /tests | |
parent | 307c736c0380a05662cde9cfd0a50771b1c43413 (diff) |
point-line-no-cull: fix array index typo
Diffstat (limited to 'tests')
-rw-r--r-- | tests/general/point-line-no-cull.c | 2 |
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; |