Commit adca0cc9 authored by Ulrich Sibiller's avatar Ulrich Sibiller

Pixels.c: reformat comments

parent fc991b93
...@@ -130,8 +130,7 @@ int nxagentUniquePixels(XImage *image) ...@@ -130,8 +130,7 @@ int nxagentUniquePixels(XImage *image)
#endif #endif
/* /*
* Take one pixel every n from the image and * Take one pixel every n from the image and add it to the array.
* add it to the array.
*/ */
switch (image -> bits_per_pixel) switch (image -> bits_per_pixel)
...@@ -172,11 +171,9 @@ int nxagentUniquePixels(XImage *image) ...@@ -172,11 +171,9 @@ int nxagentUniquePixels(XImage *image)
case 15: case 15:
{ {
/* /*
* Note that the padding bytes at the end * Note that the padding bytes at the end of the scanline are
* of the scanline are included in the set. * included in the set. This is not a big problem. What we want
* This is not a big problem. What we want * to find out is just how compressible is the image data.
* to find out is just how compressible is
* the image data.
*/ */
for (int i = 0; i < elements; i++) for (int i = 0; i < elements; i++)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment