Searched refs:NORMALCOLOR_MAX (Results 1 – 1 of 1) sorted by relevance
/external/pdfium/core/src/fpdfapi/fpdf_render/ |
D | fpdf_render_loadimage.cpp | 917 #define NORMALCOLOR_MAX(color, max) (color) > (max) ? (max) : (color) < 0 ? 0 : (color); macro 954 R = NORMALCOLOR_MAX(R, max_data); in TranslateScanline24bpp() 955 G = NORMALCOLOR_MAX(G, max_data); in TranslateScanline24bpp() 956 B = NORMALCOLOR_MAX(B, max_data); in TranslateScanline24bpp() 992 R = NORMALCOLOR_MAX(R, 1); in TranslateScanline24bpp() 993 G = NORMALCOLOR_MAX(G, 1); in TranslateScanline24bpp() 994 B = NORMALCOLOR_MAX(B, 1); in TranslateScanline24bpp() 1018 R = NORMALCOLOR_MAX(R, 1); in TranslateScanline24bpp() 1019 G = NORMALCOLOR_MAX(G, 1); in TranslateScanline24bpp() 1020 B = NORMALCOLOR_MAX(B, 1); in TranslateScanline24bpp()
|