Searched refs:tpix (Results 1 – 2 of 2) sorted by relevance
/php-src/ext/gd/libgd/ |
H A D | gd_tga.c | 113 register int *tpix = image->tpixels[y]; in gdImageCreateFromTgaCtx() local 114 for ( x = 0; x < tga->width; x++, tpix++) { in gdImageCreateFromTgaCtx() 116 …*tpix = gdTrueColor(tga->bitmap[bitmap_caret + 2], tga->bitmap[bitmap_caret + 1], tga->bitmap[bitm… in gdImageCreateFromTgaCtx() 121 …*tpix = gdTrueColorAlpha(tga->bitmap[bitmap_caret + 2], tga->bitmap[bitmap_caret + 1], tga->bitmap… in gdImageCreateFromTgaCtx()
|
H A D | gd_jpeg.c | 474 register int *tpix = im->tpixels[i]; in gdImageCreateFromJpegCtxEx() local 480 for (j = 0; j < cinfo.output_width; j++, currow += 4, tpix++) { in gdImageCreateFromJpegCtxEx() 481 *tpix = CMYKToRGB (currow[0], currow[1], currow[2], currow[3], inverted); in gdImageCreateFromJpegCtxEx() 487 register int *tpix = im->tpixels[i]; in gdImageCreateFromJpegCtxEx() local 493 for (j = 0; j < cinfo.output_width; j++, currow += 3, tpix++) { in gdImageCreateFromJpegCtxEx() 494 *tpix = gdTrueColor (currow[0], currow[1], currow[2]); in gdImageCreateFromJpegCtxEx()
|
Completed in 12 milliseconds