HomeSort by relevance Sort by last modified time
    Searched full:next_error (Results 1 - 1 of 1) sorted by null

  /build/tools/rgb2565/
to565.c 49 int* next_error = malloc((width+2) * 3 * sizeof(int)); local
51 memset(next_error, 0, (width+2) * 3 * sizeof(int));
53 next_error += 3;
69 next_error[(i-1)*3+ch] += e * 3 / 16; \
70 next_error[(i)*3+ch] += e * 5 / 16; \
71 next_error[(i+1)*3+ch] += e * 1 / 16; \
88 // error <- next_error; next_error <- 0
89 int* temp = error; error = next_error; next_error = temp
    [all...]

Completed in 4977 milliseconds