Home | History | Annotate | Download | only in IlmImf

Lines Matching refs:pixel

42 //	The compressor preprocesses the pixel data to reduce entropy,
50 // the pixel data so that the values for each channel appear in a
51 // contiguous block of memory. The compressor converts the pixel
325 unsigned int pixel;
326 char *pPtr = (char *) &pixel;
328 for (int k = 0; k < sizeof (pixel); ++k)
331 unsigned int diff = pixel - previousPixel;
332 previousPixel = pixel;
350 half pixel;
352 pixel = *(const half *) inPtr;
355 unsigned int diff = pixel.bits() - previousPixel;
356 previousPixel = pixel.bits();
373 float pixel;
374 char *pPtr = (char *) &pixel;
376 for (int k = 0; k < sizeof (pixel); ++k)
379 unsigned int pixel24 = floatToFloat24 (pixel);
456 unsigned int pixel = 0;
478 pixel += diff;
480 char *pPtr = (char *) &pixel;
482 for (int k = 0; k < sizeof (pixel); ++k)
502 pixel += diff;
505 hPtr->setBits ((unsigned short) pixel);
526 pixel += diff;
528 char *pPtr = (char *) &pixel;
530 for (int k = 0; k < sizeof (pixel); ++k)