2011-06-24 17:41:16 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
2012-05-21 11:12:37 +00:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2011-06-24 17:41:16 +00:00
|
|
|
|
|
|
|
#ifndef MOZILLA_GFX_HELPERSD2D_H_
|
|
|
|
#define MOZILLA_GFX_HELPERSD2D_H_
|
|
|
|
|
2013-07-17 12:12:22 +00:00
|
|
|
#ifndef USE_D2D1_1
|
2012-10-06 23:43:16 +00:00
|
|
|
#include "moz-d2d1-1.h"
|
2013-07-17 12:12:22 +00:00
|
|
|
#else
|
|
|
|
#include <d2d1_1.h>
|
|
|
|
#endif
|
2012-10-06 23:43:16 +00:00
|
|
|
|
2013-06-19 20:48:40 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2012-05-15 14:57:51 +00:00
|
|
|
#include <dwrite.h>
|
2011-06-24 17:41:16 +00:00
|
|
|
#include "2D.h"
|
2013-06-19 20:48:40 +00:00
|
|
|
#include "Logging.h"
|
2013-06-19 20:48:40 +00:00
|
|
|
#include "Tools.h"
|
|
|
|
#include "ImageScaling.h"
|
2011-06-24 17:41:16 +00:00
|
|
|
|
2012-05-15 14:57:51 +00:00
|
|
|
#include "ScaledFontDWrite.h"
|
|
|
|
|
2013-06-19 20:48:40 +00:00
|
|
|
#undef min
|
|
|
|
#undef max
|
|
|
|
|
2011-06-24 17:41:16 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace gfx {
|
|
|
|
|
2013-06-19 20:48:40 +00:00
|
|
|
ID2D1Factory* D2DFactory();
|
|
|
|
|
2013-07-17 12:12:22 +00:00
|
|
|
#ifdef USE_D2D1_1
|
|
|
|
ID2D1Factory1* D2DFactory1();
|
|
|
|
#endif
|
|
|
|
|
2011-06-24 17:41:16 +00:00
|
|
|
static inline D2D1_POINT_2F D2DPoint(const Point &aPoint)
|
|
|
|
{
|
|
|
|
return D2D1::Point2F(aPoint.x, aPoint.y);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline D2D1_SIZE_U D2DIntSize(const IntSize &aSize)
|
|
|
|
{
|
|
|
|
return D2D1::SizeU(aSize.width, aSize.height);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline D2D1_RECT_F D2DRect(const Rect &aRect)
|
|
|
|
{
|
|
|
|
return D2D1::RectF(aRect.x, aRect.y, aRect.XMost(), aRect.YMost());
|
|
|
|
}
|
|
|
|
|
2011-12-28 05:56:11 +00:00
|
|
|
static inline D2D1_EXTEND_MODE D2DExtend(ExtendMode aExtendMode)
|
|
|
|
{
|
2012-06-04 11:02:02 +00:00
|
|
|
D2D1_EXTEND_MODE extend;
|
2011-12-28 05:56:11 +00:00
|
|
|
switch (aExtendMode) {
|
2014-01-10 19:06:17 +00:00
|
|
|
case ExtendMode::REPEAT:
|
2011-12-28 05:56:11 +00:00
|
|
|
extend = D2D1_EXTEND_MODE_WRAP;
|
|
|
|
break;
|
2014-01-10 19:06:17 +00:00
|
|
|
case ExtendMode::REFLECT:
|
2011-12-28 05:56:11 +00:00
|
|
|
extend = D2D1_EXTEND_MODE_MIRROR;
|
|
|
|
break;
|
2012-06-04 11:02:02 +00:00
|
|
|
default:
|
|
|
|
extend = D2D1_EXTEND_MODE_CLAMP;
|
2011-12-28 05:56:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return extend;
|
|
|
|
}
|
|
|
|
|
2011-06-24 17:41:16 +00:00
|
|
|
static inline D2D1_BITMAP_INTERPOLATION_MODE D2DFilter(const Filter &aFilter)
|
|
|
|
{
|
|
|
|
switch (aFilter) {
|
2014-01-10 19:06:17 +00:00
|
|
|
case Filter::POINT:
|
2011-06-24 17:41:16 +00:00
|
|
|
return D2D1_BITMAP_INTERPOLATION_MODE_NEAREST_NEIGHBOR;
|
2012-06-04 11:02:02 +00:00
|
|
|
default:
|
|
|
|
return D2D1_BITMAP_INTERPOLATION_MODE_LINEAR;
|
2011-06-24 17:41:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-17 12:12:22 +00:00
|
|
|
#ifdef USE_D2D1_1
|
|
|
|
static inline D2D1_INTERPOLATION_MODE D2DInterpolationMode(const Filter &aFilter)
|
|
|
|
{
|
|
|
|
switch (aFilter) {
|
2014-01-10 19:06:17 +00:00
|
|
|
case Filter::POINT:
|
2013-07-17 12:12:22 +00:00
|
|
|
return D2D1_INTERPOLATION_MODE_NEAREST_NEIGHBOR;
|
|
|
|
default:
|
|
|
|
return D2D1_INTERPOLATION_MODE_LINEAR;
|
|
|
|
}
|
|
|
|
}
|
2013-11-27 11:25:16 +00:00
|
|
|
|
|
|
|
static inline D2D1_MATRIX_5X4_F D2DMatrix5x4(const Matrix5x4 &aMatrix)
|
|
|
|
{
|
|
|
|
return D2D1::Matrix5x4F(aMatrix._11, aMatrix._12, aMatrix._13, aMatrix._14,
|
|
|
|
aMatrix._21, aMatrix._22, aMatrix._23, aMatrix._24,
|
|
|
|
aMatrix._31, aMatrix._32, aMatrix._33, aMatrix._34,
|
|
|
|
aMatrix._41, aMatrix._42, aMatrix._43, aMatrix._44,
|
|
|
|
aMatrix._51, aMatrix._52, aMatrix._53, aMatrix._54);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline D2D1_VECTOR_3F D2DVector3D(const Point3D &aPoint)
|
|
|
|
{
|
|
|
|
return D2D1::Vector3F(aPoint.x, aPoint.y, aPoint.z);
|
|
|
|
}
|
|
|
|
|
2013-07-17 12:12:22 +00:00
|
|
|
#endif
|
|
|
|
|
2011-12-28 05:56:11 +00:00
|
|
|
static inline D2D1_ANTIALIAS_MODE D2DAAMode(AntialiasMode aMode)
|
2011-06-24 17:41:16 +00:00
|
|
|
{
|
|
|
|
switch (aMode) {
|
2014-01-10 19:06:17 +00:00
|
|
|
case AntialiasMode::NONE:
|
2011-12-28 05:56:11 +00:00
|
|
|
return D2D1_ANTIALIAS_MODE_ALIASED;
|
2012-06-04 11:02:02 +00:00
|
|
|
default:
|
|
|
|
return D2D1_ANTIALIAS_MODE_PER_PRIMITIVE;
|
2011-06-24 17:41:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline D2D1_MATRIX_3X2_F D2DMatrix(const Matrix &aTransform)
|
|
|
|
{
|
|
|
|
return D2D1::Matrix3x2F(aTransform._11, aTransform._12,
|
|
|
|
aTransform._21, aTransform._22,
|
|
|
|
aTransform._31, aTransform._32);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline D2D1_COLOR_F D2DColor(const Color &aColor)
|
|
|
|
{
|
|
|
|
return D2D1::ColorF(aColor.r, aColor.g, aColor.b, aColor.a);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline IntSize ToIntSize(const D2D1_SIZE_U &aSize)
|
|
|
|
{
|
|
|
|
return IntSize(aSize.width, aSize.height);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline SurfaceFormat ToPixelFormat(const D2D1_PIXEL_FORMAT &aFormat)
|
|
|
|
{
|
|
|
|
switch(aFormat.format) {
|
|
|
|
case DXGI_FORMAT_A8_UNORM:
|
2014-01-10 19:06:16 +00:00
|
|
|
return SurfaceFormat::A8;
|
2011-06-24 17:41:16 +00:00
|
|
|
case DXGI_FORMAT_B8G8R8A8_UNORM:
|
|
|
|
if (aFormat.alphaMode == D2D1_ALPHA_MODE_IGNORE) {
|
2014-01-10 19:06:16 +00:00
|
|
|
return SurfaceFormat::B8G8R8X8;
|
2011-06-24 17:41:16 +00:00
|
|
|
} else {
|
2014-01-10 19:06:16 +00:00
|
|
|
return SurfaceFormat::B8G8R8A8;
|
2011-06-24 17:41:16 +00:00
|
|
|
}
|
2012-06-04 11:02:02 +00:00
|
|
|
default:
|
2014-01-10 19:06:16 +00:00
|
|
|
return SurfaceFormat::B8G8R8A8;
|
2011-06-24 17:41:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline Rect ToRect(const D2D1_RECT_F &aRect)
|
|
|
|
{
|
|
|
|
return Rect(aRect.left, aRect.top, aRect.right - aRect.left, aRect.bottom - aRect.top);
|
|
|
|
}
|
|
|
|
|
2013-06-21 03:53:23 +00:00
|
|
|
static inline Matrix ToMatrix(const D2D1_MATRIX_3X2_F &aTransform)
|
|
|
|
{
|
|
|
|
return Matrix(aTransform._11, aTransform._12,
|
|
|
|
aTransform._21, aTransform._22,
|
|
|
|
aTransform._31, aTransform._32);
|
|
|
|
}
|
|
|
|
|
2013-11-07 09:50:10 +00:00
|
|
|
static inline Point ToPoint(const D2D1_POINT_2F &aPoint)
|
|
|
|
{
|
|
|
|
return Point(aPoint.x, aPoint.y);
|
|
|
|
}
|
|
|
|
|
2011-06-24 17:41:16 +00:00
|
|
|
static inline DXGI_FORMAT DXGIFormat(SurfaceFormat aFormat)
|
|
|
|
{
|
|
|
|
switch (aFormat) {
|
2014-01-10 19:06:16 +00:00
|
|
|
case SurfaceFormat::B8G8R8A8:
|
2011-06-24 17:41:16 +00:00
|
|
|
return DXGI_FORMAT_B8G8R8A8_UNORM;
|
2014-01-10 19:06:16 +00:00
|
|
|
case SurfaceFormat::B8G8R8X8:
|
2011-06-24 17:41:16 +00:00
|
|
|
return DXGI_FORMAT_B8G8R8A8_UNORM;
|
2014-01-10 19:06:16 +00:00
|
|
|
case SurfaceFormat::A8:
|
2011-06-24 17:41:16 +00:00
|
|
|
return DXGI_FORMAT_A8_UNORM;
|
2012-06-04 11:02:02 +00:00
|
|
|
default:
|
|
|
|
return DXGI_FORMAT_UNKNOWN;
|
2011-06-24 17:41:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-20 16:20:50 +00:00
|
|
|
static inline D2D1_ALPHA_MODE D2DAlphaModeForFormat(SurfaceFormat aFormat)
|
2011-06-24 17:41:16 +00:00
|
|
|
{
|
|
|
|
switch (aFormat) {
|
2014-01-10 19:06:16 +00:00
|
|
|
case SurfaceFormat::B8G8R8X8:
|
2011-06-24 17:41:16 +00:00
|
|
|
return D2D1_ALPHA_MODE_IGNORE;
|
2012-06-04 11:02:02 +00:00
|
|
|
default:
|
|
|
|
return D2D1_ALPHA_MODE_PREMULTIPLIED;
|
2011-06-24 17:41:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-28 05:56:11 +00:00
|
|
|
static inline D2D1_PIXEL_FORMAT D2DPixelFormat(SurfaceFormat aFormat)
|
|
|
|
{
|
2013-11-20 16:20:50 +00:00
|
|
|
return D2D1::PixelFormat(DXGIFormat(aFormat), D2DAlphaModeForFormat(aFormat));
|
2011-12-28 05:56:11 +00:00
|
|
|
}
|
|
|
|
|
2013-07-17 12:12:22 +00:00
|
|
|
#ifdef USE_D2D1_1
|
|
|
|
static inline D2D1_COMPOSITE_MODE D2DCompositionMode(CompositionOp aOp)
|
|
|
|
{
|
|
|
|
switch(aOp) {
|
2014-01-10 19:06:17 +00:00
|
|
|
case CompositionOp::OP_OVER:
|
2013-07-17 12:12:22 +00:00
|
|
|
return D2D1_COMPOSITE_MODE_SOURCE_OVER;
|
2014-01-10 19:06:17 +00:00
|
|
|
case CompositionOp::OP_ADD:
|
2013-07-17 12:12:22 +00:00
|
|
|
return D2D1_COMPOSITE_MODE_PLUS;
|
2014-01-10 19:06:17 +00:00
|
|
|
case CompositionOp::OP_ATOP:
|
2013-07-17 12:12:22 +00:00
|
|
|
return D2D1_COMPOSITE_MODE_SOURCE_ATOP;
|
2014-01-10 19:06:17 +00:00
|
|
|
case CompositionOp::OP_OUT:
|
2013-07-17 12:12:22 +00:00
|
|
|
return D2D1_COMPOSITE_MODE_SOURCE_OUT;
|
2014-01-10 19:06:17 +00:00
|
|
|
case CompositionOp::OP_IN:
|
2013-07-17 12:12:22 +00:00
|
|
|
return D2D1_COMPOSITE_MODE_SOURCE_IN;
|
2014-01-10 19:06:17 +00:00
|
|
|
case CompositionOp::OP_SOURCE:
|
2013-07-17 12:12:22 +00:00
|
|
|
return D2D1_COMPOSITE_MODE_SOURCE_COPY;
|
2014-01-10 19:06:17 +00:00
|
|
|
case CompositionOp::OP_DEST_IN:
|
2013-07-17 12:12:22 +00:00
|
|
|
return D2D1_COMPOSITE_MODE_DESTINATION_IN;
|
2014-01-10 19:06:17 +00:00
|
|
|
case CompositionOp::OP_DEST_OUT:
|
2013-07-17 12:12:22 +00:00
|
|
|
return D2D1_COMPOSITE_MODE_DESTINATION_OUT;
|
2014-01-10 19:06:17 +00:00
|
|
|
case CompositionOp::OP_DEST_OVER:
|
2013-07-17 12:12:22 +00:00
|
|
|
return D2D1_COMPOSITE_MODE_DESTINATION_OVER;
|
2014-01-10 19:06:17 +00:00
|
|
|
case CompositionOp::OP_DEST_ATOP:
|
2013-07-17 12:12:22 +00:00
|
|
|
return D2D1_COMPOSITE_MODE_DESTINATION_ATOP;
|
2014-01-10 19:06:17 +00:00
|
|
|
case CompositionOp::OP_XOR:
|
2013-07-17 12:12:22 +00:00
|
|
|
return D2D1_COMPOSITE_MODE_XOR;
|
|
|
|
default:
|
|
|
|
return D2D1_COMPOSITE_MODE_SOURCE_OVER;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-06-04 11:02:02 +00:00
|
|
|
static inline bool IsPatternSupportedByD2D(const Pattern &aPattern)
|
2011-07-08 18:49:35 +00:00
|
|
|
{
|
2014-01-10 19:06:17 +00:00
|
|
|
if (aPattern.GetType() != PatternType::RADIAL_GRADIENT) {
|
2012-12-20 04:19:45 +00:00
|
|
|
return true;
|
2011-07-08 18:49:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const RadialGradientPattern *pat =
|
|
|
|
static_cast<const RadialGradientPattern*>(&aPattern);
|
|
|
|
|
|
|
|
if (pat->mRadius1 != 0) {
|
2012-12-20 04:19:45 +00:00
|
|
|
return false;
|
2011-07-08 18:49:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Point diff = pat->mCenter2 - pat->mCenter1;
|
|
|
|
|
|
|
|
if (sqrt(diff.x * diff.x + diff.y * diff.y) >= pat->mRadius2) {
|
|
|
|
// Inner point lies outside the circle.
|
2012-12-20 04:19:45 +00:00
|
|
|
return false;
|
2011-07-08 18:49:35 +00:00
|
|
|
}
|
|
|
|
|
2012-12-20 04:19:45 +00:00
|
|
|
return true;
|
2011-07-08 18:49:35 +00:00
|
|
|
}
|
|
|
|
|
2011-06-24 17:41:16 +00:00
|
|
|
/**
|
|
|
|
* This structure is used to pass rectangles to our shader constant. We can use
|
|
|
|
* this for passing rectangular areas to SetVertexShaderConstant. In the format
|
|
|
|
* of a 4 component float(x,y,width,height). Our vertex shader can then use
|
|
|
|
* this to construct rectangular positions from the 0,0-1,1 quad that we source
|
|
|
|
* it with.
|
|
|
|
*/
|
|
|
|
struct ShaderConstantRectD3D10
|
|
|
|
{
|
|
|
|
float mX, mY, mWidth, mHeight;
|
|
|
|
ShaderConstantRectD3D10(float aX, float aY, float aWidth, float aHeight)
|
|
|
|
: mX(aX), mY(aY), mWidth(aWidth), mHeight(aHeight)
|
|
|
|
{ }
|
|
|
|
|
|
|
|
// For easy passing to SetVertexShaderConstantF.
|
|
|
|
operator float* () { return &mX; }
|
|
|
|
};
|
|
|
|
|
2012-06-04 11:02:02 +00:00
|
|
|
static inline DWRITE_MATRIX
|
2012-05-15 14:57:51 +00:00
|
|
|
DWriteMatrixFromMatrix(Matrix &aMatrix)
|
|
|
|
{
|
|
|
|
DWRITE_MATRIX mat;
|
|
|
|
mat.m11 = aMatrix._11;
|
|
|
|
mat.m12 = aMatrix._12;
|
|
|
|
mat.m21 = aMatrix._21;
|
|
|
|
mat.m22 = aMatrix._22;
|
|
|
|
mat.dx = aMatrix._31;
|
|
|
|
mat.dy = aMatrix._32;
|
|
|
|
return mat;
|
|
|
|
}
|
|
|
|
|
|
|
|
class AutoDWriteGlyphRun : public DWRITE_GLYPH_RUN
|
|
|
|
{
|
2012-06-04 11:02:02 +00:00
|
|
|
static const unsigned kNumAutoGlyphs = 256;
|
2012-05-15 14:57:51 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
AutoDWriteGlyphRun() {
|
|
|
|
glyphCount = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
~AutoDWriteGlyphRun() {
|
|
|
|
if (glyphCount > kNumAutoGlyphs) {
|
|
|
|
delete[] glyphIndices;
|
|
|
|
delete[] glyphAdvances;
|
|
|
|
delete[] glyphOffsets;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-04 11:02:02 +00:00
|
|
|
void allocate(unsigned aNumGlyphs) {
|
2012-05-15 14:57:51 +00:00
|
|
|
glyphCount = aNumGlyphs;
|
|
|
|
if (aNumGlyphs <= kNumAutoGlyphs) {
|
|
|
|
glyphIndices = &mAutoIndices[0];
|
|
|
|
glyphAdvances = &mAutoAdvances[0];
|
|
|
|
glyphOffsets = &mAutoOffsets[0];
|
|
|
|
} else {
|
|
|
|
glyphIndices = new UINT16[aNumGlyphs];
|
|
|
|
glyphAdvances = new FLOAT[aNumGlyphs];
|
|
|
|
glyphOffsets = new DWRITE_GLYPH_OFFSET[aNumGlyphs];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
DWRITE_GLYPH_OFFSET mAutoOffsets[kNumAutoGlyphs];
|
|
|
|
FLOAT mAutoAdvances[kNumAutoGlyphs];
|
|
|
|
UINT16 mAutoIndices[kNumAutoGlyphs];
|
|
|
|
};
|
|
|
|
|
2012-06-04 11:02:02 +00:00
|
|
|
static inline void
|
2012-05-15 14:57:51 +00:00
|
|
|
DWriteGlyphRunFromGlyphs(const GlyphBuffer &aGlyphs, ScaledFontDWrite *aFont, AutoDWriteGlyphRun *run)
|
|
|
|
{
|
|
|
|
run->allocate(aGlyphs.mNumGlyphs);
|
|
|
|
|
|
|
|
FLOAT *advances = const_cast<FLOAT*>(run->glyphAdvances);
|
|
|
|
UINT16 *indices = const_cast<UINT16*>(run->glyphIndices);
|
|
|
|
DWRITE_GLYPH_OFFSET *offsets = const_cast<DWRITE_GLYPH_OFFSET*>(run->glyphOffsets);
|
|
|
|
|
|
|
|
memset(advances, 0, sizeof(FLOAT) * aGlyphs.mNumGlyphs);
|
|
|
|
for (unsigned int i = 0; i < aGlyphs.mNumGlyphs; i++) {
|
|
|
|
indices[i] = aGlyphs.mGlyphs[i].mIndex;
|
|
|
|
offsets[i].advanceOffset = aGlyphs.mGlyphs[i].mPosition.x;
|
|
|
|
offsets[i].ascenderOffset = -aGlyphs.mGlyphs[i].mPosition.y;
|
|
|
|
}
|
|
|
|
|
|
|
|
run->bidiLevel = 0;
|
|
|
|
run->fontFace = aFont->mFontFace;
|
2012-08-08 20:17:04 +00:00
|
|
|
run->fontEmSize = aFont->GetSize();
|
2012-05-15 14:57:51 +00:00
|
|
|
run->glyphCount = aGlyphs.mNumGlyphs;
|
|
|
|
run->isSideways = FALSE;
|
|
|
|
}
|
|
|
|
|
2013-06-19 20:48:40 +00:00
|
|
|
static TemporaryRef<ID2D1Geometry>
|
|
|
|
ConvertRectToGeometry(const D2D1_RECT_F& aRect)
|
|
|
|
{
|
|
|
|
RefPtr<ID2D1RectangleGeometry> rectGeom;
|
|
|
|
D2DFactory()->CreateRectangleGeometry(&aRect, byRef(rectGeom));
|
|
|
|
return rectGeom.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
static TemporaryRef<ID2D1Geometry>
|
|
|
|
GetTransformedGeometry(ID2D1Geometry *aGeometry, const D2D1_MATRIX_3X2_F &aTransform)
|
|
|
|
{
|
|
|
|
RefPtr<ID2D1PathGeometry> tmpGeometry;
|
|
|
|
D2DFactory()->CreatePathGeometry(byRef(tmpGeometry));
|
|
|
|
RefPtr<ID2D1GeometrySink> currentSink;
|
|
|
|
tmpGeometry->Open(byRef(currentSink));
|
|
|
|
aGeometry->Simplify(D2D1_GEOMETRY_SIMPLIFICATION_OPTION_CUBICS_AND_LINES,
|
|
|
|
aTransform, currentSink);
|
|
|
|
currentSink->Close();
|
|
|
|
return tmpGeometry;
|
|
|
|
}
|
|
|
|
|
|
|
|
static TemporaryRef<ID2D1Geometry>
|
|
|
|
IntersectGeometry(ID2D1Geometry *aGeometryA, ID2D1Geometry *aGeometryB)
|
|
|
|
{
|
|
|
|
RefPtr<ID2D1PathGeometry> pathGeom;
|
|
|
|
D2DFactory()->CreatePathGeometry(byRef(pathGeom));
|
|
|
|
RefPtr<ID2D1GeometrySink> sink;
|
|
|
|
pathGeom->Open(byRef(sink));
|
|
|
|
aGeometryA->CombineWithGeometry(aGeometryB, D2D1_COMBINE_MODE_INTERSECT, nullptr, sink);
|
|
|
|
sink->Close();
|
|
|
|
|
|
|
|
return pathGeom;
|
|
|
|
}
|
|
|
|
|
|
|
|
static TemporaryRef<ID2D1StrokeStyle>
|
|
|
|
CreateStrokeStyleForOptions(const StrokeOptions &aStrokeOptions)
|
|
|
|
{
|
|
|
|
RefPtr<ID2D1StrokeStyle> style;
|
|
|
|
|
|
|
|
D2D1_CAP_STYLE capStyle;
|
|
|
|
D2D1_LINE_JOIN joinStyle;
|
|
|
|
|
|
|
|
switch (aStrokeOptions.mLineCap) {
|
2014-01-10 19:06:17 +00:00
|
|
|
case CapStyle::BUTT:
|
2013-06-19 20:48:40 +00:00
|
|
|
capStyle = D2D1_CAP_STYLE_FLAT;
|
|
|
|
break;
|
2014-01-10 19:06:17 +00:00
|
|
|
case CapStyle::ROUND:
|
2013-06-19 20:48:40 +00:00
|
|
|
capStyle = D2D1_CAP_STYLE_ROUND;
|
|
|
|
break;
|
2014-01-10 19:06:17 +00:00
|
|
|
case CapStyle::SQUARE:
|
2013-06-19 20:48:40 +00:00
|
|
|
capStyle = D2D1_CAP_STYLE_SQUARE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (aStrokeOptions.mLineJoin) {
|
2014-01-10 19:06:17 +00:00
|
|
|
case JoinStyle::MITER:
|
2013-06-19 20:48:40 +00:00
|
|
|
joinStyle = D2D1_LINE_JOIN_MITER;
|
|
|
|
break;
|
2014-01-10 19:06:17 +00:00
|
|
|
case JoinStyle::MITER_OR_BEVEL:
|
2013-06-19 20:48:40 +00:00
|
|
|
joinStyle = D2D1_LINE_JOIN_MITER_OR_BEVEL;
|
|
|
|
break;
|
2014-01-10 19:06:17 +00:00
|
|
|
case JoinStyle::ROUND:
|
2013-06-19 20:48:40 +00:00
|
|
|
joinStyle = D2D1_LINE_JOIN_ROUND;
|
|
|
|
break;
|
2014-01-10 19:06:17 +00:00
|
|
|
case JoinStyle::BEVEL:
|
2013-06-19 20:48:40 +00:00
|
|
|
joinStyle = D2D1_LINE_JOIN_BEVEL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
HRESULT hr;
|
|
|
|
if (aStrokeOptions.mDashPattern) {
|
|
|
|
typedef std::vector<Float> FloatVector;
|
|
|
|
// D2D "helpfully" multiplies the dash pattern by the line width.
|
|
|
|
// That's not what cairo does, or is what <canvas>'s dash wants.
|
|
|
|
// So fix the multiplication in advance.
|
|
|
|
Float lineWidth = aStrokeOptions.mLineWidth;
|
|
|
|
FloatVector dash(aStrokeOptions.mDashPattern,
|
|
|
|
aStrokeOptions.mDashPattern + aStrokeOptions.mDashLength);
|
|
|
|
for (FloatVector::iterator it = dash.begin(); it != dash.end(); ++it) {
|
|
|
|
*it /= lineWidth;
|
|
|
|
}
|
|
|
|
|
|
|
|
hr = D2DFactory()->CreateStrokeStyle(
|
|
|
|
D2D1::StrokeStyleProperties(capStyle, capStyle,
|
|
|
|
capStyle, joinStyle,
|
|
|
|
aStrokeOptions.mMiterLimit,
|
|
|
|
D2D1_DASH_STYLE_CUSTOM,
|
2013-11-07 19:40:39 +00:00
|
|
|
aStrokeOptions.mDashOffset / lineWidth),
|
2013-06-19 20:48:40 +00:00
|
|
|
&dash[0], // data() is not C++98, although it's in recent gcc
|
|
|
|
// and VC10's STL
|
|
|
|
dash.size(),
|
|
|
|
byRef(style));
|
|
|
|
} else {
|
|
|
|
hr = D2DFactory()->CreateStrokeStyle(
|
|
|
|
D2D1::StrokeStyleProperties(capStyle, capStyle,
|
|
|
|
capStyle, joinStyle,
|
|
|
|
aStrokeOptions.mMiterLimit),
|
|
|
|
nullptr, 0, byRef(style));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (FAILED(hr)) {
|
|
|
|
gfxWarning() << "Failed to create Direct2D stroke style.";
|
|
|
|
}
|
|
|
|
|
|
|
|
return style;
|
|
|
|
}
|
|
|
|
|
2013-06-19 20:48:40 +00:00
|
|
|
// This creates a (partially) uploaded bitmap for a DataSourceSurface. It
|
|
|
|
// uploads the minimum requirement and possibly downscales. It adjusts the
|
|
|
|
// input Matrix to compensate.
|
|
|
|
static TemporaryRef<ID2D1Bitmap>
|
|
|
|
CreatePartialBitmapForSurface(DataSourceSurface *aSurface, const Matrix &aDestinationTransform,
|
|
|
|
const IntSize &aDestinationSize, ExtendMode aExtendMode,
|
|
|
|
Matrix &aSourceTransform, ID2D1RenderTarget *aRT)
|
|
|
|
{
|
|
|
|
RefPtr<ID2D1Bitmap> bitmap;
|
|
|
|
|
|
|
|
// This is where things get complicated. The source surface was
|
|
|
|
// created for a surface that was too large to fit in a texture.
|
|
|
|
// We'll need to figure out if we can work with a partial upload
|
|
|
|
// or downsample in software.
|
|
|
|
|
|
|
|
Matrix transform = aDestinationTransform;
|
|
|
|
Matrix invTransform = transform = aSourceTransform * transform;
|
|
|
|
if (!invTransform.Invert()) {
|
|
|
|
// Singular transform, nothing to be drawn.
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
Rect rect(0, 0, Float(aDestinationSize.width), Float(aDestinationSize.height));
|
|
|
|
|
|
|
|
// Calculate the rectangle of the source mapped to our surface.
|
|
|
|
rect = invTransform.TransformBounds(rect);
|
|
|
|
rect.RoundOut();
|
|
|
|
|
|
|
|
IntSize size = aSurface->GetSize();
|
|
|
|
|
|
|
|
Rect uploadRect(0, 0, Float(size.width), Float(size.height));
|
|
|
|
|
|
|
|
// Limit the uploadRect as much as possible without supporting discontiguous uploads
|
|
|
|
//
|
|
|
|
// region we will paint from
|
|
|
|
// uploadRect
|
|
|
|
// .---------------. .---------------. resulting uploadRect
|
|
|
|
// | |rect | |
|
|
|
|
// | .---------. .----. .----. .---------------.
|
|
|
|
// | | | ----> | | | | ----> | |
|
|
|
|
// | '---------' '----' '----' '---------------'
|
|
|
|
// '---------------' '---------------'
|
|
|
|
//
|
|
|
|
//
|
|
|
|
|
|
|
|
if (uploadRect.Contains(rect)) {
|
|
|
|
// Extend mode is irrelevant, the displayed rect is completely contained
|
|
|
|
// by the source bitmap.
|
|
|
|
uploadRect = rect;
|
2014-01-10 19:06:17 +00:00
|
|
|
} else if (aExtendMode == ExtendMode::CLAMP && uploadRect.Intersects(rect)) {
|
2013-06-19 20:48:40 +00:00
|
|
|
// Calculate the rectangle on the source bitmap that touches our
|
2014-01-10 19:06:17 +00:00
|
|
|
// surface, and upload that, for ExtendMode::CLAMP we can actually guarantee
|
2013-06-19 20:48:40 +00:00
|
|
|
// correct behaviour in this case.
|
|
|
|
uploadRect = uploadRect.Intersect(rect);
|
|
|
|
|
|
|
|
// We now proceed to check if we can limit at least one dimension of the
|
|
|
|
// upload rect safely without looking at extend mode.
|
|
|
|
} else if (rect.x >= 0 && rect.XMost() < size.width) {
|
|
|
|
uploadRect.x = rect.x;
|
|
|
|
uploadRect.width = rect.width;
|
|
|
|
} else if (rect.y >= 0 && rect.YMost() < size.height) {
|
|
|
|
uploadRect.y = rect.y;
|
|
|
|
uploadRect.height = rect.height;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int stride = aSurface->Stride();
|
|
|
|
|
|
|
|
if (uploadRect.width <= aRT->GetMaximumBitmapSize() &&
|
|
|
|
uploadRect.height <= aRT->GetMaximumBitmapSize()) {
|
|
|
|
|
|
|
|
// A partial upload will suffice.
|
|
|
|
aRT->CreateBitmap(D2D1::SizeU(uint32_t(uploadRect.width), uint32_t(uploadRect.height)),
|
|
|
|
aSurface->GetData() + int(uploadRect.x) * 4 + int(uploadRect.y) * stride,
|
|
|
|
stride,
|
|
|
|
D2D1::BitmapProperties(D2DPixelFormat(aSurface->GetFormat())),
|
|
|
|
byRef(bitmap));
|
|
|
|
|
|
|
|
aSourceTransform.Translate(uploadRect.x, uploadRect.y);
|
|
|
|
|
|
|
|
return bitmap;
|
|
|
|
} else {
|
|
|
|
int Bpp = BytesPerPixel(aSurface->GetFormat());
|
|
|
|
|
|
|
|
if (Bpp != 4) {
|
|
|
|
// This shouldn't actually happen in practice!
|
|
|
|
MOZ_ASSERT(false);
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
ImageHalfScaler scaler(aSurface->GetData(), stride, size);
|
|
|
|
|
|
|
|
// Calculate the maximum width/height of the image post transform.
|
|
|
|
Point topRight = transform * Point(Float(size.width), 0);
|
|
|
|
Point topLeft = transform * Point(0, 0);
|
|
|
|
Point bottomRight = transform * Point(Float(size.width), Float(size.height));
|
|
|
|
Point bottomLeft = transform * Point(0, Float(size.height));
|
|
|
|
|
|
|
|
IntSize scaleSize;
|
|
|
|
|
|
|
|
scaleSize.width = int32_t(std::max(Distance(topRight, topLeft),
|
|
|
|
Distance(bottomRight, bottomLeft)));
|
|
|
|
scaleSize.height = int32_t(std::max(Distance(topRight, bottomRight),
|
|
|
|
Distance(topLeft, bottomLeft)));
|
|
|
|
|
|
|
|
if (unsigned(scaleSize.width) > aRT->GetMaximumBitmapSize()) {
|
|
|
|
// Ok, in this case we'd really want a downscale of a part of the bitmap,
|
|
|
|
// perhaps we can do this later but for simplicity let's do something
|
|
|
|
// different here and assume it's good enough, this should be rare!
|
|
|
|
scaleSize.width = 4095;
|
|
|
|
}
|
|
|
|
if (unsigned(scaleSize.height) > aRT->GetMaximumBitmapSize()) {
|
|
|
|
scaleSize.height = 4095;
|
|
|
|
}
|
|
|
|
|
|
|
|
scaler.ScaleForSize(scaleSize);
|
|
|
|
|
|
|
|
IntSize newSize = scaler.GetSize();
|
|
|
|
|
|
|
|
aRT->CreateBitmap(D2D1::SizeU(newSize.width, newSize.height),
|
|
|
|
scaler.GetScaledData(), scaler.GetStride(),
|
|
|
|
D2D1::BitmapProperties(D2DPixelFormat(aSurface->GetFormat())),
|
|
|
|
byRef(bitmap));
|
|
|
|
|
|
|
|
aSourceTransform.Scale(Float(size.width / newSize.width),
|
|
|
|
Float(size.height / newSize.height));
|
|
|
|
return bitmap;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-06-24 17:41:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* MOZILLA_GFX_HELPERSD2D_H_ */
|