Lines Matching defs:argb
838 static void convert_for_16(int w, int x, int y, int argb)
840 int r = (argb >> 16) & 0xFF;
841 int g = (argb >> 8) & 0xFF;
842 int b = (argb >> 0) & 0xFF;
846 static void convert_for_32(int w, int x, int y, int argb)
848 buffer_32bpp [y * w + x] = argb & 0x00FFFFFF;
855 void (*store_data)(int w, int x, int y, int argb);
910 unsigned long argb = prop[i++];
911 store_data(width, x, y, argb);
912 int opaque = ((argb >> 24) & 0xFF) >= 0x80; /* arbitrary cutoff */