From b2b0fceea58bf7e13cc73020133aff6d6b4f4640 Mon Sep 17 00:00:00 2001 From: "senorblanco@chromium.org" Date: Wed, 12 Jan 2011 16:34:40 +0000 Subject: When printing a page containing alpha blending on a printer which doesn't support alpha blending, post-process the metafile to replace the AlphaBlend calls with BitBlts from a software-composited rendering of the page so far. BUG=7434 TEST=see bug Review URL: http://codereview.chromium.org/5362002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71177 0039d316-1c4b-4281-b951-d872f2087c98 --- printing/emf_win.cc | 2 ++ 1 file changed, 2 insertions(+) (limited to 'printing/emf_win.cc') diff --git a/printing/emf_win.cc b/printing/emf_win.cc index 9629bb2..5de962b 100644 --- a/printing/emf_win.cc +++ b/printing/emf_win.cc @@ -396,6 +396,8 @@ bool Emf::Record::SafePlayback(const XFORM* base_matrix) const { } else { res = Play(); } + } else { + res = true; } break; } -- cgit v1.1