05c4a4322e
Reason for revert: Re-landing: Chromium-side fix to be landed with the roll (https://codereview.chromium.org/607853003/) Original issue's description: > Revert of Fix SkTextBlob offset semantics. (patchset #2 id:20001 of https://codereview.chromium.org/605533002/) > > Reason for revert: > Breaking the Chrome builds with the error: > > [14:54:14.317833] ../../skia/ext/pixel_ref_utils.cc:221:16: error: 'drawPosText' marked 'override' but does not override any member functions > [14:54:14.318022] virtual void drawPosText(const SkDraw& draw, > [14:54:14.318082] ^ > > Original issue's description: > > Fix SkTextBlob offset semantics. > > > > Implement proper x/y drawTextBlob() handling by plumbing a > > drawPosText() offset parameter (to act as an additional glyph pos > > translation) throughout the device layer. > > > > The new offset superceeds the existing constY, with a minor semantic > > tweak: whereas previous implementations were ignoring constY in 2D > > positioning mode (scalarsPerGlyph == 2), now the offset is always > > observed, in all positioning modes. We can do this because existing > > drawPosText() clients always pass constY == 0 for full positioning mode. > > > > R=reed@google.com, jvanverth@google.com, robertphillips@google.com > > > > Committed: https://skia.googlesource.com/skia/+/c13bc571d3e61a43b87eb97f0719abd304cafaf2 > > TBR=jvanverth@google.com,reed@google.com,bsalomon@google.com,fmalita@chromium.org > NOTREECHECKS=true > NOTRY=true > > Committed: https://skia.googlesource.com/skia/+/d46b8d2bab7cfba8458432248e1568ac377429e9 R=jvanverth@google.com, reed@google.com, bsalomon@google.com, robertphillips@google.com TBR=bsalomon@google.com, jvanverth@google.com, reed@google.com, robertphillips@google.com NOTREECHECKS=true NOTRY=true Author: fmalita@chromium.org Review URL: https://codereview.chromium.org/607413003
332 lines
9.6 KiB
C++
332 lines
9.6 KiB
C++
/*
|
|
* Copyright 2011 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef SkXPSDevice_DEFINED
|
|
#define SkXPSDevice_DEFINED
|
|
|
|
#include "SkTypes.h"
|
|
#include <ObjBase.h>
|
|
#include <XpsObjectModel.h>
|
|
|
|
#include "SkAutoCoInitialize.h"
|
|
#include "SkBitmapDevice.h"
|
|
#include "SkBitSet.h"
|
|
#include "SkCanvas.h"
|
|
#include "SkColor.h"
|
|
#include "SkPaint.h"
|
|
#include "SkPath.h"
|
|
#include "SkPoint.h"
|
|
#include "SkShader.h"
|
|
#include "SkSize.h"
|
|
#include "SkTArray.h"
|
|
#include "SkTScopedComPtr.h"
|
|
#include "SkTypeface.h"
|
|
|
|
//#define SK_XPS_USE_DETERMINISTIC_IDS
|
|
|
|
/** \class SkXPSDevice
|
|
|
|
The drawing context for the XPS backend.
|
|
*/
|
|
class SkXPSDevice : public SkBitmapDevice {
|
|
public:
|
|
SK_API SkXPSDevice();
|
|
SK_API virtual ~SkXPSDevice();
|
|
|
|
virtual bool beginPortfolio(SkWStream* outputStream);
|
|
/**
|
|
@param unitsPerMeter converts geometry units into physical units.
|
|
@param pixelsPerMeter resolution to use when geometry must be rasterized.
|
|
@param trimSize final page size in physical units.
|
|
The top left of the trim is the origin of physical space.
|
|
@param mediaBox The size of the physical media in physical units.
|
|
The top and left must be less than zero.
|
|
The bottom and right must be greater than the trimSize.
|
|
The default is to coincide with the trimSize.
|
|
@param bleedBox The size of the bleed box in physical units.
|
|
Must be contained within the mediaBox.
|
|
The default is to coincide with the mediaBox.
|
|
@param artBox The size of the content box in physical units.
|
|
Must be contained within the trimSize.
|
|
The default is to coincide with the trimSize.
|
|
@param cropBox The size of the recommended view port in physical units.
|
|
Must be contained within the mediaBox.
|
|
The default is to coincide with the mediaBox.
|
|
*/
|
|
virtual bool beginSheet(
|
|
const SkVector& unitsPerMeter,
|
|
const SkVector& pixelsPerMeter,
|
|
const SkSize& trimSize,
|
|
const SkRect* mediaBox = NULL,
|
|
const SkRect* bleedBox = NULL,
|
|
const SkRect* artBox = NULL,
|
|
const SkRect* cropBox = NULL);
|
|
|
|
virtual bool endSheet();
|
|
virtual bool endPortfolio();
|
|
|
|
protected:
|
|
virtual void clear(SkColor color) SK_OVERRIDE;
|
|
|
|
virtual void drawPaint(const SkDraw&, const SkPaint& paint) SK_OVERRIDE;
|
|
|
|
virtual void drawPoints(
|
|
const SkDraw&,
|
|
SkCanvas::PointMode mode,
|
|
size_t count, const SkPoint[],
|
|
const SkPaint& paint) SK_OVERRIDE;
|
|
|
|
virtual void drawRect(
|
|
const SkDraw&,
|
|
const SkRect& r,
|
|
const SkPaint& paint) SK_OVERRIDE;
|
|
|
|
virtual void drawRRect(
|
|
const SkDraw&,
|
|
const SkRRect&,
|
|
const SkPaint& paint) SK_OVERRIDE;
|
|
|
|
virtual void drawPath(
|
|
const SkDraw&,
|
|
const SkPath& platonicPath,
|
|
const SkPaint& paint,
|
|
const SkMatrix* prePathMatrix,
|
|
bool pathIsMutable) SK_OVERRIDE;
|
|
|
|
virtual void drawBitmap(
|
|
const SkDraw&,
|
|
const SkBitmap& bitmap,
|
|
const SkMatrix& matrix,
|
|
const SkPaint& paint) SK_OVERRIDE;
|
|
|
|
virtual void drawSprite(
|
|
const SkDraw&,
|
|
const SkBitmap& bitmap,
|
|
int x, int y,
|
|
const SkPaint& paint) SK_OVERRIDE;
|
|
|
|
virtual void drawText(
|
|
const SkDraw&,
|
|
const void* text, size_t len,
|
|
SkScalar x, SkScalar y,
|
|
const SkPaint& paint) SK_OVERRIDE;
|
|
|
|
virtual void drawPosText(
|
|
const SkDraw&,
|
|
const void* text, size_t len,
|
|
const SkScalar pos[], int scalarsPerPos,
|
|
const SkPoint& offset, const SkPaint& paint) SK_OVERRIDE;
|
|
|
|
virtual void drawTextOnPath(
|
|
const SkDraw&,
|
|
const void* text, size_t len,
|
|
const SkPath& path,
|
|
const SkMatrix* matrix,
|
|
const SkPaint& paint) SK_OVERRIDE;
|
|
|
|
virtual void drawVertices(
|
|
const SkDraw&,
|
|
SkCanvas::VertexMode,
|
|
int vertexCount, const SkPoint verts[],
|
|
const SkPoint texs[], const SkColor colors[],
|
|
SkXfermode* xmode,
|
|
const uint16_t indices[], int indexCount,
|
|
const SkPaint& paint) SK_OVERRIDE;
|
|
|
|
virtual void drawDevice(
|
|
const SkDraw&,
|
|
SkBaseDevice* device,
|
|
int x, int y,
|
|
const SkPaint& paint) SK_OVERRIDE;
|
|
|
|
virtual bool allowImageFilter(const SkImageFilter*) SK_OVERRIDE;
|
|
|
|
private:
|
|
class TypefaceUse : ::SkNoncopyable {
|
|
public:
|
|
SkFontID typefaceId;
|
|
int ttcIndex;
|
|
SkStream* fontData;
|
|
IXpsOMFontResource* xpsFont;
|
|
SkBitSet* glyphsUsed;
|
|
|
|
explicit TypefaceUse();
|
|
~TypefaceUse();
|
|
};
|
|
friend static HRESULT subset_typeface(TypefaceUse* current);
|
|
|
|
SkXPSDevice(IXpsOMObjectFactory* xpsFactory);
|
|
|
|
SkAutoCoInitialize fAutoCo;
|
|
SkTScopedComPtr<IXpsOMObjectFactory> fXpsFactory;
|
|
SkTScopedComPtr<IStream> fOutputStream;
|
|
SkTScopedComPtr<IXpsOMPackageWriter> fPackageWriter;
|
|
|
|
unsigned int fCurrentPage;
|
|
SkTScopedComPtr<IXpsOMCanvas> fCurrentXpsCanvas;
|
|
SkSize fCurrentCanvasSize;
|
|
SkVector fCurrentUnitsPerMeter;
|
|
SkVector fCurrentPixelsPerMeter;
|
|
|
|
SkTArray<TypefaceUse, true> fTypefaces;
|
|
|
|
/** Creates a GUID based id and places it into buffer.
|
|
buffer should have space for at least GUID_ID_LEN wide characters.
|
|
The string will always be wchar null terminated.
|
|
XXXXXXXXsXXXXsXXXXsXXXXsXXXXXXXXXXXX0
|
|
The string may begin with a digit,
|
|
and so may not be suitable as a bare resource key.
|
|
*/
|
|
HRESULT createId(wchar_t* buffer, size_t bufferSize, wchar_t sep = '-');
|
|
#ifdef SK_XPS_USE_DETERMINISTIC_IDS
|
|
decltype(GUID::Data1) fNextId = 0;
|
|
#endif
|
|
|
|
HRESULT initXpsDocumentWriter(IXpsOMImageResource* image);
|
|
|
|
HRESULT createXpsPage(
|
|
const XPS_SIZE& pageSize,
|
|
IXpsOMPage** page);
|
|
|
|
HRESULT createXpsThumbnail(
|
|
IXpsOMPage* page, const unsigned int pageNumber,
|
|
IXpsOMImageResource** image);
|
|
|
|
void internalDrawRect(
|
|
const SkDraw&,
|
|
const SkRect& r,
|
|
bool transformRect,
|
|
const SkPaint& paint);
|
|
|
|
HRESULT createXpsBrush(
|
|
const SkPaint& skPaint,
|
|
IXpsOMBrush** xpsBrush,
|
|
const SkMatrix* parentTransform = NULL);
|
|
|
|
HRESULT createXpsSolidColorBrush(
|
|
const SkColor skColor, const SkAlpha alpha,
|
|
IXpsOMBrush** xpsBrush);
|
|
|
|
HRESULT createXpsImageBrush(
|
|
const SkBitmap& bitmap,
|
|
const SkMatrix& localMatrix,
|
|
const SkShader::TileMode (&xy)[2],
|
|
const SkAlpha alpha,
|
|
IXpsOMTileBrush** xpsBrush);
|
|
|
|
HRESULT createXpsLinearGradient(
|
|
SkShader::GradientInfo info,
|
|
const SkAlpha alpha,
|
|
const SkMatrix& localMatrix,
|
|
IXpsOMMatrixTransform* xpsMatrixToUse,
|
|
IXpsOMBrush** xpsBrush);
|
|
|
|
HRESULT createXpsRadialGradient(
|
|
SkShader::GradientInfo info,
|
|
const SkAlpha alpha,
|
|
const SkMatrix& localMatrix,
|
|
IXpsOMMatrixTransform* xpsMatrixToUse,
|
|
IXpsOMBrush** xpsBrush);
|
|
|
|
HRESULT createXpsGradientStop(
|
|
const SkColor skColor,
|
|
const SkScalar offset,
|
|
IXpsOMGradientStop** xpsGradStop);
|
|
|
|
HRESULT createXpsTransform(
|
|
const SkMatrix& matrix,
|
|
IXpsOMMatrixTransform ** xpsTransform);
|
|
|
|
HRESULT createXpsRect(
|
|
const SkRect& rect,
|
|
BOOL stroke, BOOL fill,
|
|
IXpsOMGeometryFigure** xpsRect);
|
|
|
|
HRESULT createXpsQuad(
|
|
const SkPoint (&points)[4],
|
|
BOOL stroke, BOOL fill,
|
|
IXpsOMGeometryFigure** xpsQuad);
|
|
|
|
HRESULT CreateTypefaceUse(
|
|
const SkPaint& paint,
|
|
TypefaceUse** fontResource);
|
|
|
|
HRESULT AddGlyphs(
|
|
const SkDraw& d,
|
|
IXpsOMObjectFactory* xpsFactory,
|
|
IXpsOMCanvas* canvas,
|
|
TypefaceUse* font,
|
|
LPCWSTR text,
|
|
XPS_GLYPH_INDEX* xpsGlyphs,
|
|
UINT32 xpsGlyphsLen,
|
|
XPS_POINT *origin,
|
|
FLOAT fontSize,
|
|
XPS_STYLE_SIMULATION sims,
|
|
const SkMatrix& transform,
|
|
const SkPaint& paint);
|
|
|
|
HRESULT addXpsPathGeometry(
|
|
IXpsOMGeometryFigureCollection* figures,
|
|
BOOL stroke, BOOL fill, const SkPath& path);
|
|
|
|
HRESULT createPath(
|
|
IXpsOMGeometryFigure* figure,
|
|
IXpsOMVisualCollection* visuals,
|
|
IXpsOMPath** path);
|
|
|
|
HRESULT sideOfClamp(
|
|
const SkRect& leftPoints, const XPS_RECT& left,
|
|
IXpsOMImageResource* imageResource,
|
|
IXpsOMVisualCollection* visuals);
|
|
|
|
HRESULT cornerOfClamp(
|
|
const SkRect& tlPoints,
|
|
const SkColor color,
|
|
IXpsOMVisualCollection* visuals);
|
|
|
|
HRESULT clip(
|
|
IXpsOMVisual* xpsVisual,
|
|
const SkDraw& d);
|
|
HRESULT clipToPath(
|
|
IXpsOMVisual* xpsVisual,
|
|
const SkPath& clipPath,
|
|
XPS_FILL_RULE fillRule);
|
|
|
|
HRESULT drawInverseWindingPath(
|
|
const SkDraw& d,
|
|
const SkPath& devicePath,
|
|
IXpsOMPath* xpsPath);
|
|
|
|
HRESULT shadePath(
|
|
IXpsOMPath* shadedPath,
|
|
const SkPaint& shaderPaint,
|
|
const SkMatrix& matrix,
|
|
BOOL* fill, BOOL* stroke);
|
|
|
|
void convertToPpm(
|
|
const SkMaskFilter* filter,
|
|
SkMatrix* matrix,
|
|
SkVector* ppuScale,
|
|
const SkIRect& clip, SkIRect* clipIRect);
|
|
|
|
HRESULT applyMask(
|
|
const SkDraw& d,
|
|
const SkMask& mask,
|
|
const SkVector& ppuScale,
|
|
IXpsOMPath* shadedPath);
|
|
|
|
virtual SkBaseDevice* onCreateDevice(const SkImageInfo&, Usage) SK_OVERRIDE;
|
|
|
|
// Disable the default copy and assign implementation.
|
|
SkXPSDevice(const SkXPSDevice&);
|
|
void operator=(const SkXPSDevice&);
|
|
|
|
typedef SkBitmapDevice INHERITED;
|
|
};
|
|
|
|
#endif
|