aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/device
diff options
context:
space:
mode:
authorGravatar bungeman@google.com <bungeman@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-10-01 15:03:18 +0000
committerGravatar bungeman@google.com <bungeman@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-10-01 15:03:18 +0000
commit635091f0a98b7d86a74baff11ae5e304062d8420 (patch)
treeb55a162af5df326aff2b59e41542428feb37b579 /src/device
parent9a112f5605b093a9f4edd96158687512def78032 (diff)
Minor changes to XPS device.
git-svn-id: http://skia.googlecode.com/svn/trunk@11552 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'src/device')
-rw-r--r--src/device/xps/SkXPSDevice.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/device/xps/SkXPSDevice.cpp b/src/device/xps/SkXPSDevice.cpp
index 0881a0ffaa..f837655183 100644
--- a/src/device/xps/SkXPSDevice.cpp
+++ b/src/device/xps/SkXPSDevice.cpp
@@ -2051,6 +2051,7 @@ HRESULT SkXPSDevice::CreateTypefaceUse(const SkPaint& paint,
SkTScopedComPtr<IStream> fontStream;
int ttcIndex;
SkStream* fontData = typeface->openStream(&ttcIndex);
+ //TODO: cannot handle FON fonts.
HRM(SkIStream::CreateFromSkStream(fontData, true, &fontStream),
"Could not create font stream.");
@@ -2286,6 +2287,7 @@ void SkXPSDevice::drawText(const SkDraw& d,
HRV(CreateTypefaceUse(paint, &typeface));
SkDraw myDraw(d);
+ myDraw.fMatrix = &SkMatrix::I();
SkXPSDrawProcs procs;
text_draw_init(paint, text, byteLen, *typeface->glyphsUsed, myDraw, procs);
@@ -2336,6 +2338,7 @@ void SkXPSDevice::drawPosText(const SkDraw& d,
HRV(CreateTypefaceUse(paint, &typeface));
SkDraw myDraw(d);
+ myDraw.fMatrix = &SkMatrix::I();
SkXPSDrawProcs procs;
text_draw_init(paint, text, byteLen, *typeface->glyphsUsed, myDraw, procs);
@@ -2411,6 +2414,9 @@ SkBaseDevice* SkXPSDevice::onCreateCompatibleDevice(SkBitmap::Config config,
int width, int height,
bool isOpaque,
Usage usage) {
+
+//Conditional for bug compatibility with PDF device.
+#if 0
if (SkBaseDevice::kGeneral_Usage == usage) {
return NULL;
SK_CRASH();
@@ -2420,7 +2426,7 @@ SkBaseDevice* SkXPSDevice::onCreateCompatibleDevice(SkBitmap::Config config,
//dev->BeginCanvas(s, s, SkMatrix::I());
//return dev;
}
-
+#endif
return new SkXPSDevice(this->fXpsFactory.get());
}