Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 214142
Collapse All | Expand All

(-)src/aarender.c.orig (-2 / +2 lines)
Lines 94-101 Link Here
94
	gamma = randomval / 2;
94
	gamma = randomval / 2;
95
    mval = (c->parameters[c->filltable[255]].p[4]);
95
    mval = (c->parameters[c->filltable[255]].p[4]);
96
    for (y = y1; y < y2; y++) {
96
    for (y = y1; y < y2; y++) {
97
	pos = 2 * y * wi;
97
	pos = 2 * (y * wi + x1);
98
	pos1 = y * aa_scrwidth(c);
98
	pos1 = y * aa_scrwidth(c) + x1;
99
	esum = 0;
99
	esum = 0;
100
	for (x = x1; x < x2; x++) {
100
	for (x = x1; x < x2; x++) {
101
	    i1 = table[((((int) c->imagebuffer[pos])))];
101
	    i1 = table[((((int) c->imagebuffer[pos])))];

Return to bug 214142