Home | History | Annotate | Download | only in compile

Lines Matching refs:png_byte

94   png_bytep buf = outBuffer->NextBlock<png_byte>(length);
151 outInfo->rows[i] = new png_byte[rowBytes];
186 /*static void dump_image(int w, int h, const png_byte* const* rows, int
205 const png_byte* row = rows[j];
274 const png_byte* row = imageInfo.rows[j];
403 rgbPalette[idx].red = (png_byte)((col >> 24) & 0xff);
404 rgbPalette[idx].green = (png_byte)((col >> 16) & 0xff);
405 rgbPalette[idx].blue = (png_byte)((col >> 8) & 0xff);
406 alphaPalette[idx] = (png_byte)(col & 0xff);
412 const png_byte* row = imageInfo.rows[j];
423 *out++ = (png_byte)(rr * 0.2126f + gg * 0.7152f + bb * 0.0722f);
470 png_byte alphaPalette[256];
542 unknowns[pIndex].data = (png_byte*)info->serialize9Patch();
550 unknowns[oIndex].data = (png_byte*)calloc(chunkSize, 1);
551 png_byte outputData[chunkSize];
562 unknowns[bIndex].data = (png_byte*)calloc(chunkSize, 1);
857 png_byte* color = rows[y] + x * 4;
1236 png_byte signature[kPngSignatureSize];