Home
last modified time | relevance | path

Searched refs:FXSYS_RGB (Results 1 – 7 of 7) sorted by relevance

/external/pdfium/core/src/fpdfdoc/
Ddoc_bookmark.cpp37 return FXSYS_RGB(0, 0, 0); in GetColorRef()
42 return FXSYS_RGB(r, g, b); in GetColorRef()
/external/pdfium/core/src/fpdfapi/fpdf_page/
Dfpdf_page_graph_state.cpp242 rgb = color.GetRGB(R, G, B) ? FXSYS_RGB(R, G, B) : (FX_DWORD)-1; in SetColor()
256 pData->m_FillRGB = ret ? FXSYS_RGB(R, G, B) : (FX_DWORD)-1; in SetFillPattern()
271 pData->m_StrokeColor.GetRGB(R, G, B) ? FXSYS_RGB(R, G, B) : (FX_DWORD)-1; in SetStrokePattern()
/external/pdfium/fpdfsdk/src/
Dfsdk_baseannot.cpp807 color = FXSYS_RGB((int)g, (int)g, (int)g); in GetColor()
815 color = FXSYS_RGB((int)r, (int)g, (int)b); in GetColor()
828 color = FXSYS_RGB((int)(r * 255), (int)(g * 255), (int)(b * 255)); in GetColor()
Dfsdk_baseform.cpp2735 return FXSYS_RGB(255, 255, 255);
/external/pdfium/core/include/fxge/
Dfx_dib.h74 #define FXSYS_RGB(r, g, b) ((r) | ((g) << 8) | ((b) << 16)) macro
/external/pdfium/core/src/fpdfapi/fpdf_render/
Dfpdf_render_image.cpp139 return FXSYS_RGB(m_Samples[FXSYS_GetRValue(rgb)], in TranslateColor()
/external/pdfium/core/src/fxge/dib/
Dfx_dib_main.cpp39 rgb = FXSYS_RGB(FXARGB_R(argb), FXARGB_G(argb), FXARGB_B(argb)); in ArgbDecode()