/external/pdfium/core/fxge/dib/ |
D | cfx_scanlinecompositor.cpp | 225 int blend_type) { in GetGrayWithBlend() argument 227 if (blend_type >= FXDIB_BLEND_NONSEPARABLE) in GetGrayWithBlend() 228 gray = blend_type == FXDIB_BLEND_LUMINOSITY ? gray : *dest_scan; in GetGrayWithBlend() 229 else if (blend_type) in GetGrayWithBlend() 230 gray = Blend(blend_type, *dest_scan, gray); in GetGrayWithBlend() 237 int blend_type, in CompositeRow_Argb2Graya() argument 268 if (blend_type && src_alpha_scan) { in CompositeRow_Argb2Graya() 269 if (blend_type >= FXDIB_BLEND_NONSEPARABLE) in CompositeRow_Argb2Graya() 270 gray = blend_type == FXDIB_BLEND_LUMINOSITY ? gray : *dest_scan; in CompositeRow_Argb2Graya() 272 gray = Blend(blend_type, *dest_scan, gray); in CompositeRow_Argb2Graya() [all …]
|
D | cfx_dibitmap.h | 72 int blend_type = FXDIB_BLEND_NORMAL, 84 int blend_type = FXDIB_BLEND_NORMAL,
|
D | cfx_bitmapcomposer.cpp | 27 int blend_type) { in Compose() argument 44 m_BlendType = blend_type; in Compose()
|
D | cfx_scanlinecompositor.h | 25 int blend_type,
|
D | cfx_bitmapcomposer.h | 36 int blend_type);
|
D | cfx_dibitmap.cpp | 842 int blend_type, in CompositeBitmap() argument 867 pSrcBitmap->GetPalette(), 0, blend_type, in CompositeBitmap() 914 int blend_type, in CompositeMask() argument 947 blend_type, pClipMask != nullptr, bRgbByteOrder, in CompositeMask()
|
/external/pdfium/core/fxge/win32/ |
D | win32_int.h | 150 int blend_type) override; 153 int blend_type) override; 157 int blend_type) override; 203 int blend_type) override; 212 int blend_type) override; 219 int blend_type) override; 242 int blend_type) override; 251 int blend_type) override; 258 int blend_type) override; 294 int blend_type) override; [all …]
|
D | fx_win32_print.cpp | 77 int blend_type) { in SetDIBits() argument 87 ASSERT(blend_type == FXDIB_BLEND_NORMAL); in SetDIBits() 107 int blend_type) { in StretchDIBits() argument 168 int blend_type) { in StartDIBits() argument 184 nullptr, 0, blend_type); in StartDIBits() 196 blend_type); in StartDIBits() 429 int blend_type) { in DrawPath() argument 430 if (blend_type != FXDIB_BLEND_NORMAL) { in DrawPath() 447 int blend_type) { in SetDIBits() argument 448 if (blend_type != FXDIB_BLEND_NORMAL) in SetDIBits() [all …]
|
D | fx_win32_device.cpp | 972 int blend_type) { in DrawPath() argument 973 if (blend_type != FXDIB_BLEND_NORMAL) in DrawPath() 1074 int blend_type) { in FillRectWithBlend() argument 1075 if (blend_type != FXDIB_BLEND_NORMAL) in FillRectWithBlend() 1128 int blend_type) { in DrawCosmeticLine() argument 1129 if (blend_type != FXDIB_BLEND_NORMAL) in DrawCosmeticLine() 1203 int blend_type) { in SetDIBits() argument 1204 ASSERT(blend_type == FXDIB_BLEND_NORMAL); in SetDIBits() 1280 int blend_type) { in StretchDIBits() argument 1345 int blend_type) { in StartDIBits() argument
|
/external/pdfium/core/fxge/skia/ |
D | fx_skia_device.h | 65 int blend_type) override; 69 int blend_type) override; 75 int blend_type) override; 91 int blend_type) override; 98 int blend_type) override; 113 int blend_type) override; 121 int blend_type) override; 130 int blend_type);
|
D | fx_skia_device.cpp | 320 SkBlendMode GetSkiaBlendMode(int blend_type) { in GetSkiaBlendMode() argument 321 switch (blend_type) { in GetSkiaBlendMode() 556 int blend_type, in SetBitmapPaint() argument 564 paint->setBlendMode(GetSkiaBlendMode(blend_type)); in SetBitmapPaint() 709 int blend_type) { in DrawPath() argument 717 blend_type, m_pDriver->GetGroupKnockout()))) { in DrawPath() 731 m_blendType = blend_type; in DrawPath() 1085 int blend_type, in DrawChanged() argument 1092 blend_type != m_blendType || group_knockout != m_groupKnockout; in DrawChanged() 1898 int blend_type) { in DrawPath() argument [all …]
|
/external/pdfium/core/fxge/ |
D | ifx_renderdevicedriver.h | 52 int blend_type) = 0; 56 int blend_type); 60 int blend_type); 72 int blend_type) = 0; 81 int blend_type) = 0; 88 int blend_type) = 0; 109 int blend_type);
|
D | cfx_renderdevice.h | 146 int blend_type); 159 int blend_type); 174 int blend_type); 207 int blend_type); 272 int blend_type); 287 int blend_type); 292 int blend_type); 293 bool FillRectWithBlend(const FX_RECT* pRect, uint32_t color, int blend_type);
|
D | ifx_renderdevicedriver.cpp | 38 int blend_type) { in FillRectWithBlend() argument 45 int blend_type) { in DrawCosmeticLine() argument 93 int blend_type) { in SetBitsWithMask() argument
|
D | cfx_renderdevice.cpp | 516 int blend_type) { in DrawPathWithBlend() argument 527 DrawCosmeticLine(pos1, pos2, fill_color, fill_mode, blend_type); in DrawPathWithBlend() 571 if (FillRectWithBlend(&rect_i, fill_color, blend_type)) in DrawPathWithBlend() 599 smooth_path, blend_type); in DrawPathWithBlend() 607 blend_type); in DrawPathWithBlend() 610 fill_color, stroke_color, fill_mode, blend_type); in DrawPathWithBlend() 614 blend_type); in DrawPathWithBlend() 624 int blend_type) { in DrawFillStrokePath() argument 665 blend_type)) { in DrawFillStrokePath() 679 int blend_type) { in FillRectWithBlend() argument [all …]
|
D | cfx_defaultrenderdevice.h | 39 int blend_type) override;
|
/external/pdfium/core/fxge/agg/ |
D | fx_agg_driver.h | 60 int blend_type) override; 64 int blend_type) override; 75 int blend_type) override; 84 int blend_type) override; 91 int blend_type) override;
|
D | fx_agg_driver.cpp | 1304 int blend_type) { in DrawPath() argument 1305 if (blend_type != FXDIB_BLEND_NORMAL) in DrawPath() 1403 int blend_type) { in FillRectWithBlend() argument 1404 if (blend_type != FXDIB_BLEND_NORMAL) in FillRectWithBlend() 1490 int blend_type) { in SetDIBits() argument 1497 pSrcRect->left, pSrcRect->top, blend_type, in SetDIBits() 1502 pSrcRect->top, blend_type, m_pClipRgn.get(), m_bRgbByteOrder); in SetDIBits() 1513 int blend_type) { in StretchDIBits() argument 1520 return SetDIBits(pSource, argb, &rect, dest_left, dest_top, blend_type); in StretchDIBits() 1529 false, false, m_bRgbByteOrder, 0, blend_type); in StretchDIBits() [all …]
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_state_fs.c | 1270 struct lp_type blend_type; in convert_to_blend_type() local 1340 lp_blend_type_from_format_desc(src_fmt, &blend_type); in convert_to_blend_type() 1343 is_arith = blend_type.length * blend_type.width != mem_type.width * mem_type.length; in convert_to_blend_type() 1357 assert(blend_type.width == 32 && blend_type.floating); in convert_to_blend_type() 1366 src_type.width = blend_type.width * blend_type.length; in convert_to_blend_type() 1367 blend_type.length *= pixels; in convert_to_blend_type() 1401 blend_type.width, chans[j], src_type); in convert_to_blend_type() 1407 … lp_build_const_int_vec(gallivm, src_type, from_lsb * blend_type.width), in convert_to_blend_type() 1417 dst[i] = LLVMBuildBitCast(builder, res, lp_build_vec_type(gallivm, blend_type), ""); in convert_to_blend_type() 1439 struct lp_type blend_type; in convert_from_blend_type() local [all …]
|
/external/pdfium/fpdfsdk/ |
D | fpdfeditpage.cpp | 219 int blend_type = pPageObj->m_GeneralState.GetBlendType(); in FPDFPageObj_HasTransparency() local 220 if (blend_type != FXDIB_BLEND_NORMAL) in FPDFPageObj_HasTransparency()
|
/external/pdfium/core/fpdfapi/render/ |
D | cpdf_renderstatus.cpp | 1484 int blend_type = pPageObj->m_GeneralState.GetBlendType(); in ProcessTransparency() local 1485 if (blend_type == FXDIB_BLEND_UNSUPPORTED) in ProcessTransparency() 1538 blend_type = FXDIB_BLEND_DARKEN; in ProcessTransparency() 1543 if (!pSMaskDict && group_alpha == 1.0f && blend_type == FXDIB_BLEND_NORMAL && in ProcessTransparency() 1554 m_curBlend = blend_type; in ProcessTransparency() 1647 CompositeDIBitmap(bitmap, rect.left, rect.top, 0, blitAlpha, blend_type, in ProcessTransparency()
|
/external/mesa3d/src/compiler/glsl/ |
D | builtin_functions.cpp | 794 const glsl_type *blend_type); 4079 …_mix_lrp(builtin_available_predicate avail, const glsl_type *val_type, const glsl_type *blend_type) in _mix_lrp() argument 4083 ir_variable *a = in_var(blend_type, "a"); in _mix_lrp() 4094 const glsl_type *blend_type) in _mix_sel() argument 4098 ir_variable *a = in_var(blend_type, "a"); in _mix_sel()
|