Home | History | Annotate | Download | only in imagediff

Lines Matching refs:pixel_width

52 void ConvertBetweenBGRAandRGBA(const unsigned char* input, int pixel_width,
54 for (int x = 0; x < pixel_width; x++) {
64 void ConvertRGBAtoRGB(const unsigned char* rgba, int pixel_width,
66 for (int x = 0; x < pixel_width; x++) {
126 void ConvertRGBtoRGBA(const unsigned char* rgb, int pixel_width,
128 for (int x = 0; x < pixel_width; x++) {
138 void ConvertRGBtoBGRA(const unsigned char* rgb, int pixel_width,
140 for (int x = 0; x < pixel_width; x++) {
393 void ConvertBGRAtoRGB(const unsigned char* bgra, int pixel_width,
395 for (int x = 0; x < pixel_width; x++) {