2008-07-14 02:27:43 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
2012-05-21 15:12:37 +04: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/. */
|
2008-07-14 02:27:43 +04:00
|
|
|
|
|
|
|
#ifndef GFX_UTILS_H
|
|
|
|
#define GFX_UTILS_H
|
|
|
|
|
2010-05-18 09:43:05 +04:00
|
|
|
#include "gfxTypes.h"
|
2012-04-18 02:04:15 +04:00
|
|
|
#include "imgIContainer.h"
|
2014-04-08 13:05:39 +04:00
|
|
|
#include "mozilla/gfx/2D.h"
|
2015-10-18 08:24:48 +03:00
|
|
|
#include "mozilla/RefPtr.h"
|
2015-10-26 21:31:12 +03:00
|
|
|
#include "mozilla/UniquePtr.h"
|
2014-10-17 15:53:15 +04:00
|
|
|
#include "nsColor.h"
|
2014-06-20 02:36:25 +04:00
|
|
|
#include "nsPrintfCString.h"
|
2015-11-04 19:49:49 +03:00
|
|
|
#include "nsRegionFwd.h"
|
2015-04-21 18:04:57 +03:00
|
|
|
#include "mozilla/gfx/Rect.h"
|
2015-12-02 22:31:17 +03:00
|
|
|
#include "mozilla/CheckedInt.h"
|
2010-05-18 08:04:22 +04:00
|
|
|
|
2014-06-24 02:48:58 +04:00
|
|
|
class gfxASurface;
|
2010-08-13 17:30:27 +04:00
|
|
|
class gfxDrawable;
|
2015-10-12 06:21:03 +03:00
|
|
|
class nsIInputStream;
|
2015-10-12 06:21:03 +03:00
|
|
|
class nsIGfxInfo;
|
2014-06-27 15:19:40 +04:00
|
|
|
class nsIPresShell;
|
|
|
|
|
2013-10-02 04:57:50 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace layers {
|
2014-06-19 04:57:51 +04:00
|
|
|
struct PlanarYCbCrData;
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace layers
|
2014-08-23 00:12:38 +04:00
|
|
|
namespace image {
|
|
|
|
class ImageRegion;
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace image
|
|
|
|
} // namespace mozilla
|
2013-10-02 04:57:50 +04:00
|
|
|
|
2013-05-30 01:59:24 +04:00
|
|
|
class gfxUtils {
|
2008-07-14 02:27:43 +04:00
|
|
|
public:
|
2014-04-08 13:05:39 +04:00
|
|
|
typedef mozilla::gfx::DataSourceSurface DataSourceSurface;
|
2014-06-27 15:19:40 +04:00
|
|
|
typedef mozilla::gfx::DrawTarget DrawTarget;
|
2014-01-27 19:27:20 +04:00
|
|
|
typedef mozilla::gfx::IntPoint IntPoint;
|
|
|
|
typedef mozilla::gfx::Matrix Matrix;
|
2014-04-08 13:05:39 +04:00
|
|
|
typedef mozilla::gfx::SourceSurface SourceSurface;
|
|
|
|
typedef mozilla::gfx::SurfaceFormat SurfaceFormat;
|
2014-08-23 00:12:38 +04:00
|
|
|
typedef mozilla::image::ImageRegion ImageRegion;
|
2014-04-08 13:05:39 +04:00
|
|
|
|
2010-05-18 08:04:22 +04:00
|
|
|
/*
|
|
|
|
* Premultiply or Unpremultiply aSourceSurface, writing the result
|
|
|
|
* to aDestSurface or back into aSourceSurface if aDestSurface is null.
|
|
|
|
*
|
|
|
|
* If aDestSurface is given, it must have identical format, dimensions, and
|
|
|
|
* stride as the source.
|
|
|
|
*
|
2016-01-08 07:57:38 +03:00
|
|
|
* If the source is not SurfaceFormat::A8R8G8B8_UINT32, no operation is performed. If
|
2010-05-18 08:04:22 +04:00
|
|
|
* aDestSurface is given, the data is copied over.
|
|
|
|
*/
|
2014-06-19 04:04:05 +04:00
|
|
|
static bool PremultiplyDataSurface(DataSourceSurface* srcSurf,
|
|
|
|
DataSourceSurface* destSurf);
|
|
|
|
static bool UnpremultiplyDataSurface(DataSourceSurface* srcSurf,
|
|
|
|
DataSourceSurface* destSurf);
|
|
|
|
|
2015-06-17 17:00:52 +03:00
|
|
|
static already_AddRefed<DataSourceSurface>
|
2014-06-19 04:04:05 +04:00
|
|
|
CreatePremultipliedDataSurface(DataSourceSurface* srcSurf);
|
2015-06-17 17:00:52 +03:00
|
|
|
static already_AddRefed<DataSourceSurface>
|
2014-06-19 04:04:05 +04:00
|
|
|
CreateUnpremultipliedDataSurface(DataSourceSurface* srcSurf);
|
2010-08-13 17:30:02 +04:00
|
|
|
|
2014-04-17 09:31:44 +04:00
|
|
|
static void ConvertBGRAtoRGBA(uint8_t* aData, uint32_t aLength);
|
2012-03-24 02:10:50 +04:00
|
|
|
|
2010-08-13 17:30:02 +04:00
|
|
|
/**
|
2010-08-13 17:30:27 +04:00
|
|
|
* Draw something drawable while working around limitations like bad support
|
2010-08-13 17:30:02 +04:00
|
|
|
* for EXTEND_PAD, lack of source-clipping, or cairo / pixman bugs with
|
|
|
|
* extreme user-space-to-image-space transforms.
|
|
|
|
*
|
|
|
|
* The input parameters here usually come from the output of our image
|
|
|
|
* snapping algorithm in nsLayoutUtils.cpp.
|
|
|
|
* This method is split from nsLayoutUtils::DrawPixelSnapped to allow for
|
|
|
|
* adjusting the parameters. For example, certain images with transparent
|
|
|
|
* margins only have a drawable subimage. For those images, imgFrame::Draw
|
|
|
|
* will tweak the rects and transforms that it gets from the pixel snapping
|
|
|
|
* algorithm before passing them on to this method.
|
|
|
|
*/
|
2014-08-23 00:12:38 +04:00
|
|
|
static void DrawPixelSnapped(gfxContext* aContext,
|
|
|
|
gfxDrawable* aDrawable,
|
|
|
|
const gfxSize& aImageSize,
|
|
|
|
const ImageRegion& aRegion,
|
2014-04-20 05:28:38 +04:00
|
|
|
const mozilla::gfx::SurfaceFormat aFormat,
|
2016-05-25 19:01:18 +03:00
|
|
|
mozilla::gfx::SamplingFilter aSamplingFilter,
|
2014-08-29 18:04:34 +04:00
|
|
|
uint32_t aImageFlags = imgIContainer::FLAG_NONE,
|
|
|
|
gfxFloat aOpacity = 1.0);
|
2010-09-03 06:31:42 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Clip aContext to the region aRegion.
|
|
|
|
*/
|
|
|
|
static void ClipToRegion(gfxContext* aContext, const nsIntRegion& aRegion);
|
|
|
|
|
2013-07-09 08:21:05 +04:00
|
|
|
/**
|
|
|
|
* Clip aTarget to the region aRegion.
|
|
|
|
*/
|
|
|
|
static void ClipToRegion(mozilla::gfx::DrawTarget* aTarget, const nsIntRegion& aRegion);
|
|
|
|
|
2010-09-08 04:36:57 +04:00
|
|
|
/*
|
|
|
|
* Convert image format to depth value
|
|
|
|
*/
|
2013-09-25 00:45:13 +04:00
|
|
|
static int ImageFormatToDepth(gfxImageFormat aFormat);
|
2010-11-24 12:35:21 +03:00
|
|
|
|
2012-12-07 03:58:13 +04:00
|
|
|
/**
|
|
|
|
* Return the transform matrix that maps aFrom to the rectangle defined by
|
|
|
|
* aToTopLeft/aToTopRight/aToBottomRight. aFrom must be
|
|
|
|
* nonempty and the destination rectangle must be axis-aligned.
|
|
|
|
*/
|
|
|
|
static gfxMatrix TransformRectToRect(const gfxRect& aFrom,
|
|
|
|
const gfxPoint& aToTopLeft,
|
|
|
|
const gfxPoint& aToTopRight,
|
|
|
|
const gfxPoint& aToBottomRight);
|
|
|
|
|
2014-01-27 19:27:20 +04:00
|
|
|
static Matrix TransformRectToRect(const gfxRect& aFrom,
|
|
|
|
const IntPoint& aToTopLeft,
|
|
|
|
const IntPoint& aToTopRight,
|
|
|
|
const IntPoint& aToBottomRight);
|
|
|
|
|
2010-11-24 12:35:21 +03:00
|
|
|
/**
|
2015-04-21 18:04:57 +03:00
|
|
|
* If aIn can be represented exactly using an gfx::IntRect (i.e.
|
2012-08-22 19:56:38 +04:00
|
|
|
* integer-aligned edges and coordinates in the int32_t range) then we
|
2010-11-24 12:35:21 +03:00
|
|
|
* set aOut to that rectangle, otherwise return failure.
|
|
|
|
*/
|
2015-04-21 18:04:57 +03:00
|
|
|
static bool GfxRectToIntRect(const gfxRect& aIn, mozilla::gfx::IntRect* aOut);
|
2011-02-08 23:35:54 +03:00
|
|
|
|
|
|
|
/**
|
2011-06-22 16:11:27 +04:00
|
|
|
* Return the smallest power of kScaleResolution (2) greater than or equal to
|
|
|
|
* aVal.
|
2011-02-08 23:35:54 +03:00
|
|
|
*/
|
|
|
|
static gfxFloat ClampToScaleFactor(gfxFloat aVal);
|
2011-09-28 02:19:24 +04:00
|
|
|
|
2014-06-24 02:48:58 +04:00
|
|
|
/**
|
2014-07-06 03:10:49 +04:00
|
|
|
* Clears surface to aColor (which defaults to transparent black).
|
2014-06-24 02:48:58 +04:00
|
|
|
*/
|
2015-09-25 05:09:04 +03:00
|
|
|
static void ClearThebesSurface(gfxASurface* aSurface);
|
2014-06-24 02:48:58 +04:00
|
|
|
|
2014-04-08 13:05:39 +04:00
|
|
|
/**
|
|
|
|
* Creates a copy of aSurface, but having the SurfaceFormat aFormat.
|
|
|
|
*
|
|
|
|
* This function always creates a new surface. Do not call it if aSurface's
|
|
|
|
* format is the same as aFormat. Such a non-conversion would just be an
|
|
|
|
* unnecessary and wasteful copy (this function asserts to prevent that).
|
|
|
|
*
|
|
|
|
* This function is intended to be called by code that needs to access the
|
|
|
|
* pixel data of the surface, but doesn't want to have lots of branches
|
|
|
|
* to handle different pixel data formats (code which would become out of
|
|
|
|
* date if and when new formats are added). Callers can use this function
|
|
|
|
* to copy the surface to a specified format so that they only have to
|
|
|
|
* handle pixel data in that one format.
|
|
|
|
*
|
|
|
|
* WARNING: There are format conversions that will not be supported by this
|
|
|
|
* function. It very much depends on what the Moz2D backends support. If
|
|
|
|
* the temporary B8G8R8A8 DrawTarget that this function creates has a
|
|
|
|
* backend that supports DrawSurface() calls passing a surface with
|
|
|
|
* aSurface's format it will work. Otherwise it will not.
|
|
|
|
*
|
|
|
|
* *** IMPORTANT PERF NOTE ***
|
|
|
|
*
|
|
|
|
* This function exists partly because format conversion is fraught with
|
|
|
|
* non-obvious performance hazards, so we don't want Moz2D consumers to be
|
|
|
|
* doing their own format conversion. Do not try to do so, or at least read
|
|
|
|
* the comments in this functions implemtation. That said, the copy that
|
|
|
|
* this function carries out has a cost and, although this function tries
|
|
|
|
* to avoid perf hazards such as expensive uploads to/readbacks from the
|
|
|
|
* GPU, it can't guarantee that it always successfully does so. Perf
|
|
|
|
* critical code that can directly handle the common formats that it
|
|
|
|
* encounters in a way that is cheaper than a copy-with-format-conversion
|
|
|
|
* should consider doing so, and only use this function as a fallback to
|
|
|
|
* handle other formats.
|
|
|
|
*
|
|
|
|
* XXXjwatt it would be nice if SourceSurface::GetDataSurface took a
|
|
|
|
* SurfaceFormat argument (with a default argument meaning "use the
|
|
|
|
* existing surface's format") and returned a DataSourceSurface in that
|
|
|
|
* format. (There would then be an issue of callers maybe failing to
|
|
|
|
* realize format conversion may involve expensive copying/uploading/
|
|
|
|
* readback.)
|
|
|
|
*/
|
2015-06-17 17:00:52 +03:00
|
|
|
static already_AddRefed<DataSourceSurface>
|
2014-04-08 13:05:39 +04:00
|
|
|
CopySurfaceToDataSourceSurfaceWithFormat(SourceSurface* aSurface,
|
|
|
|
SurfaceFormat aFormat);
|
|
|
|
|
2012-12-17 04:20:01 +04:00
|
|
|
static const uint8_t sUnpremultiplyTable[256*256];
|
|
|
|
static const uint8_t sPremultiplyTable[256*256];
|
2014-05-09 00:49:01 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a color that can be used to identify a frame with a given frame number.
|
|
|
|
* The colors will cycle after sNumFrameColors. You can query colors 0 .. sNumFrameColors-1
|
|
|
|
* to get all the colors back.
|
|
|
|
*/
|
|
|
|
static const mozilla::gfx::Color& GetColorForFrameNumber(uint64_t aFrameNumber);
|
|
|
|
static const uint32_t sNumFrameColors;
|
|
|
|
|
2014-06-27 15:19:40 +04:00
|
|
|
|
|
|
|
enum BinaryOrData {
|
|
|
|
eBinaryEncode,
|
|
|
|
eDataURIEncode
|
|
|
|
};
|
|
|
|
|
2011-11-17 07:44:16 +04:00
|
|
|
/**
|
2014-06-27 15:19:40 +04:00
|
|
|
* Encodes the given surface to PNG/JPEG/BMP/etc. using imgIEncoder.
|
|
|
|
*
|
|
|
|
* @param aMimeType The MIME-type of the image type that the surface is to
|
|
|
|
* be encoded to. Used to create an appropriate imgIEncoder instance to
|
|
|
|
* do the encoding.
|
|
|
|
*
|
|
|
|
* @param aOutputOptions Passed directly to imgIEncoder::InitFromData as
|
|
|
|
* the value of the |outputOptions| parameter. Callers are responsible
|
|
|
|
* for making sure that this is a sane value for the passed MIME-type
|
|
|
|
* (i.e. for the type of encoder that will be created).
|
|
|
|
*
|
|
|
|
* @aBinaryOrData Flag used to determine if the surface is simply encoded
|
|
|
|
* to the requested binary image format, or if the binary image is
|
|
|
|
* further converted to base-64 and written out as a 'data:' URI.
|
|
|
|
*
|
|
|
|
* @aFile If specified, the encoded data is written out to aFile, otherwise
|
|
|
|
* it is copied to the clipboard.
|
|
|
|
*
|
|
|
|
* TODO: Copying to the clipboard as a binary file is not currently
|
|
|
|
* supported.
|
2011-11-17 07:44:16 +04:00
|
|
|
*/
|
2014-06-27 15:19:40 +04:00
|
|
|
static nsresult
|
|
|
|
EncodeSourceSurface(SourceSurface* aSurface,
|
|
|
|
const nsACString& aMimeType,
|
|
|
|
const nsAString& aOutputOptions,
|
|
|
|
BinaryOrData aBinaryOrData,
|
|
|
|
FILE* aFile);
|
2011-11-17 07:44:16 +04:00
|
|
|
|
|
|
|
/**
|
2014-06-27 15:19:40 +04:00
|
|
|
* Write as a PNG file to the path aFile.
|
2011-11-17 07:44:16 +04:00
|
|
|
*/
|
2014-06-27 15:19:40 +04:00
|
|
|
static void WriteAsPNG(SourceSurface* aSurface, const nsAString& aFile);
|
|
|
|
static void WriteAsPNG(SourceSurface* aSurface, const char* aFile);
|
|
|
|
static void WriteAsPNG(DrawTarget* aDT, const nsAString& aFile);
|
|
|
|
static void WriteAsPNG(DrawTarget* aDT, const char* aFile);
|
|
|
|
static void WriteAsPNG(nsIPresShell* aShell, const char* aFile);
|
2011-11-17 07:44:16 +04:00
|
|
|
|
|
|
|
/**
|
2014-06-27 15:19:40 +04:00
|
|
|
* Dump as a PNG encoded Data URL to a FILE stream (using stdout by
|
|
|
|
* default).
|
|
|
|
*
|
|
|
|
* Rather than giving aFile a default argument we have separate functions
|
|
|
|
* to make them easier to use from a debugger.
|
2011-11-17 07:44:16 +04:00
|
|
|
*/
|
2014-06-27 15:19:40 +04:00
|
|
|
static void DumpAsDataURI(SourceSurface* aSourceSurface, FILE* aFile);
|
|
|
|
static inline void DumpAsDataURI(SourceSurface* aSourceSurface) {
|
|
|
|
DumpAsDataURI(aSourceSurface, stdout);
|
|
|
|
}
|
|
|
|
static void DumpAsDataURI(DrawTarget* aDT, FILE* aFile);
|
|
|
|
static inline void DumpAsDataURI(DrawTarget* aDT) {
|
|
|
|
DumpAsDataURI(aDT, stdout);
|
|
|
|
}
|
2014-11-29 01:41:47 +03:00
|
|
|
static nsCString GetAsDataURI(SourceSurface* aSourceSurface);
|
|
|
|
static nsCString GetAsDataURI(DrawTarget* aDT);
|
2014-12-08 22:42:33 +03:00
|
|
|
static nsCString GetAsLZ4Base64Str(DataSourceSurface* aSourceSurface);
|
2012-03-05 22:09:05 +04:00
|
|
|
|
2015-10-26 21:31:12 +03:00
|
|
|
static mozilla::UniquePtr<uint8_t[]> GetImageBuffer(DataSourceSurface* aSurface,
|
|
|
|
bool aIsAlphaPremultiplied,
|
|
|
|
int32_t* outFormat);
|
2015-10-12 06:21:03 +03:00
|
|
|
|
|
|
|
static nsresult GetInputStream(DataSourceSurface* aSurface,
|
|
|
|
bool aIsAlphaPremultiplied,
|
|
|
|
const char* aMimeType,
|
|
|
|
const char16_t* aEncoderOptions,
|
|
|
|
nsIInputStream** outStream);
|
|
|
|
|
2015-10-12 06:21:03 +03:00
|
|
|
static nsresult ThreadSafeGetFeatureStatus(const nsCOMPtr<nsIGfxInfo>& gfxInfo,
|
|
|
|
int32_t feature,
|
2016-04-14 00:12:47 +03:00
|
|
|
nsACString& failureId,
|
2015-10-12 06:21:03 +03:00
|
|
|
int32_t* status);
|
|
|
|
|
2014-06-27 15:19:40 +04:00
|
|
|
/**
|
|
|
|
* Copy to the clipboard as a PNG encoded Data URL.
|
|
|
|
*/
|
|
|
|
static void CopyAsDataURI(SourceSurface* aSourceSurface);
|
|
|
|
static void CopyAsDataURI(DrawTarget* aDT);
|
|
|
|
|
2014-12-31 23:17:39 +03:00
|
|
|
static bool DumpDisplayList();
|
2014-05-04 04:35:47 +04:00
|
|
|
|
2012-03-05 22:09:05 +04:00
|
|
|
static FILE* sDumpPaintFile;
|
2008-07-14 02:27:43 +04:00
|
|
|
};
|
|
|
|
|
2012-02-19 06:23:06 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace gfx {
|
|
|
|
|
2014-10-17 15:53:15 +04:00
|
|
|
/**
|
|
|
|
* If the CMS mode is eCMSMode_All, these functions transform the passed
|
|
|
|
* color to a device color using the transform returened by gfxPlatform::
|
|
|
|
* GetCMSRGBTransform(). If the CMS mode is some other value, the color is
|
|
|
|
* returned unchanged (other than a type change to Moz2D Color, if
|
|
|
|
* applicable).
|
|
|
|
*/
|
|
|
|
Color ToDeviceColor(Color aColor);
|
|
|
|
Color ToDeviceColor(nscolor aColor);
|
2012-03-20 23:47:02 +04:00
|
|
|
|
2015-12-02 22:31:17 +03:00
|
|
|
/**
|
|
|
|
* Performs a checked multiply of the given width, height, and bytes-per-pixel
|
|
|
|
* values.
|
|
|
|
*/
|
|
|
|
static inline CheckedInt<uint32_t>
|
|
|
|
SafeBytesForBitmap(uint32_t aWidth, uint32_t aHeight, unsigned aBytesPerPixel)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(aBytesPerPixel > 0);
|
|
|
|
CheckedInt<uint32_t> width = uint32_t(aWidth);
|
|
|
|
CheckedInt<uint32_t> height = uint32_t(aHeight);
|
|
|
|
return width * height * aBytesPerPixel;
|
|
|
|
}
|
|
|
|
|
2012-02-19 06:23:06 +04:00
|
|
|
} // namespace gfx
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2008-07-14 02:27:43 +04:00
|
|
|
#endif
|