diff options
author | Owen Taylor <otaylor@redhat.com> | 2002-05-16 19:18:01 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2002-05-16 19:18:01 +0000 |
commit | c7efe6f36c0c425cb4de5bf92a79dd14b0c9d52b (patch) | |
tree | 408073336c217d9074fe7054aeede84d9801c7f6 /gdk-pixbuf/pixops | |
parent | 85a8bdb1fc529b16201d4bbcd181e2ae3f58bbcc (diff) | |
download | gtk+-c7efe6f36c0c425cb4de5bf92a79dd14b0c9d52b.tar.gz |
Patch from Matthias Clasen to fix some typos (#77246)
Thu May 16 15:17:30 2002 Owen Taylor <otaylor@redhat.com>
* pixops/pixops.c: Patch from Matthias Clasen to fix some typos
(#77246)
Diffstat (limited to 'gdk-pixbuf/pixops')
-rw-r--r-- | gdk-pixbuf/pixops/pixops.c | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/gdk-pixbuf/pixops/pixops.c b/gdk-pixbuf/pixops/pixops.c index 593895edd3..57c48d3906 100644 --- a/gdk-pixbuf/pixops/pixops.c +++ b/gdk-pixbuf/pixops/pixops.c @@ -493,13 +493,13 @@ composite_line_22_4a4 (int *weights, int n_x, int n_y, b += ta * q0[6]; a += ta; - ta = w3 * q0[3]; - r += ta * q0[0]; - g += ta * q0[1]; - b += ta * q0[2]; + ta = w3 * q1[3]; + r += ta * q1[0]; + g += ta * q1[1]; + b += ta * q1[2]; a += ta; - ta += w4 * q1[7]; + ta = w4 * q1[7]; r += ta * q1[4]; g += ta * q1[5]; b += ta * q1[6]; @@ -881,16 +881,15 @@ scale_line_22_33 (int *weights, int n_x, int n_y, g += w3 * q1[1]; b += w3 * q1[2]; - r += w4 * q1[4]; - g += w4 * q1[5]; - b += w4 * q1[6]; + r += w4 * q1[3]; + g += w4 * q1[4]; + b += w4 * q1[5]; dest[0] = (r + 0x8000) >> 16; dest[1] = (g + 0x8000) >> 16; dest[2] = (b + 0x8000) >> 16; dest += 3; - x += x_step; } |