Searched refs:rowPtrs (Results 1 - 3 of 3) sorted by relevance

/haiku-fatelf/src/tools/
H A Dgenerate_boot_screen.cpp161 read_png(const char* filename, int& width, int& height, png_bytep*& rowPtrs, argument
222 rowPtrs = (png_bytep*)malloc(sizeof(png_bytep) * height);
224 rowPtrs[y] = (png_byte*)malloc(png_get_rowbytes(pngPtr, infoPtr));
226 png_read_image(pngPtr, rowPtrs);
231 write_24bit_image(const char* baseName, int width, int height, png_bytep* rowPtrs) argument
243 zlib.Compress(rowPtrs[y], width * 3);
253 write_8bit_image(const char* baseName, int width, int height, unsigned char** rowPtrs) argument
265 zlib.Compress(rowPtrs[y], width);
/haiku-fatelf/headers/private/shared/
H A DColorQuantizer.h49 bool ProcessImage(const uint8* const * rowPtrs, int width,
/haiku-fatelf/src/kits/shared/
H A DColorQuantizer.cpp82 BColorQuantizer::ProcessImage(const uint8* const * rowPtrs, int width, argument
87 uint8 b = rowPtrs[y][x];
88 uint8 g = rowPtrs[y][x + 1];
89 uint8 r = rowPtrs[y][x + 2];

Completed in 121 milliseconds