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.cpp38 return FXSYS_RGB(0, 0, 0); in GetColorRef()
43 return FXSYS_RGB(r, g, b); in GetColorRef()
/external/pdfium/core/src/fpdfapi/fpdf_page/
Dfpdf_page_graph_state.cpp253 rgb = color.GetRGB(R, G, B) ? FXSYS_RGB(R, G, B) : (FX_DWORD) - 1; in SetColor()
265 pData->m_FillRGB = ret ? FXSYS_RGB(R, G, B) : (FX_DWORD) - 1; in SetFillPattern()
277 pData->m_StrokeRGB = pData->m_StrokeColor.GetRGB(R, G, B) ? FXSYS_RGB(R, G, B) : (FX_DWORD) - 1; in SetStrokePattern()
/external/pdfium/fpdfsdk/src/
Dfsdk_baseannot.cpp967 color = FXSYS_RGB((int)g, (int)g, (int)g); in GetColor()
977 color = FXSYS_RGB((int)r, (int)g, (int)b); in GetColor()
992 color = FXSYS_RGB((int)(r * 255), (int)(g * 255), (int)(b * 255)); in GetColor()
Dfsdk_baseform.cpp2659 if(nFieldType <0 || nFieldType >6) return FXSYS_RGB(255,255,255); in GetHighlightColor()
/external/pdfium/core/include/fxge/
Dfx_dib.h71 #define FXSYS_RGB(r, g, b) ((r) | ((g) << 8) | ((b) << 16)) macro
/external/pdfium/core/src/fpdfapi/fpdf_render/
Dfpdf_render_image.cpp117 return FXSYS_RGB(m_Samples[FXSYS_GetRValue(rgb)], m_Samples[256 + FXSYS_GetGValue(rgb)], in TranslateColor()
/external/pdfium/core/src/fxge/dib/
Dfx_dib_main.cpp31 rgb = FXSYS_RGB(FXARGB_R(argb), FXARGB_G(argb), FXARGB_B(argb)); in ArgbDecode()