Home
last modified time | relevance | path

Searched refs:Pixel (Results 1 – 4 of 4) sorted by relevance

/GUIX-v6.2.1/guix_studio/
Dimage_reader.h28 class Pixel {
30 Pixel(void) in Pixel() function
35 Pixel(int Red, int Green, int Blue);
36 Pixel(GX_COLOR color);
38 BOOL operator == (const Pixel &Pix) const;
39 BOOL operator != (const Pixel &Pix) const;
91 static int GetNearestPaletteColor(Pixel want_color, GX_COLOR *palette, int palsize);
124 static void ReadPixel16(image_reader *reader, int Index, Pixel *pPut);
125 static void ReadPixel24(image_reader *reader, int Index, Pixel *pPut);
126 static void ReadPixel32(image_reader *reader, int Index, Pixel *pPut);
[all …]
Dimage_reader.cpp35 Pixel::Pixel(int red, int green, int blue) in Pixel() function in Pixel
44 Pixel::Pixel(GX_COLOR color) in Pixel() function in Pixel
51 BOOL Pixel::operator != (const Pixel &other) const in operator !=()
62 BOOL Pixel::operator == (const Pixel &other) const in operator ==()
350 Pixel val; in BitmapStretchStep()
688 Pixel val1; in CountDuplicates()
689 Pixel val2; in CountDuplicates()
720 Pixel val; in ComputeGrayThreshod()
850 Pixel val; in ColorSpaceConvertRow()
1287 Pixel val; in RleEncodeRow()
[all …]
Dpng_reader.cpp286 void png_reader::ReadPixel48(image_reader *reader, int Index, Pixel *Pixel) in ReadPixel48() argument
290 Pixel->Red = *pGet++; in ReadPixel48()
291 Pixel->Green = *pGet++; in ReadPixel48()
292 Pixel->Blue = *pGet; in ReadPixel48()
303 (trans_color->red == Pixel->Red) && in ReadPixel48()
304 (trans_color->green == Pixel->Green) && in ReadPixel48()
305 (trans_color->blue == Pixel->Blue)) in ReadPixel48()
308 Pixel->Alpha = 0; in ReadPixel48()
312 Pixel->Red &= 0xff; in ReadPixel48()
313 Pixel->Green &= 0xff; in ReadPixel48()
[all …]
DPaletteLayoutDlg.cpp206 Pixel old_color(OldPalette[info->colorval]); in CheckResetColorIndexes()