2018-11-30 22:52:05 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
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/. */
|
2005-04-06 05:54:26 +04:00
|
|
|
|
2005-04-11 08:36:18 +04:00
|
|
|
#ifndef GFX_IMAGESURFACE_H
|
|
|
|
#define GFX_IMAGESURFACE_H
|
2005-04-06 05:54:26 +04:00
|
|
|
|
2013-06-23 16:03:39 +04:00
|
|
|
#include "mozilla/MemoryReporting.h"
|
2015-10-18 08:24:48 +03:00
|
|
|
#include "mozilla/RefPtr.h"
|
2005-04-06 05:54:26 +04:00
|
|
|
#include "gfxASurface.h"
|
2013-10-08 03:15:59 +04:00
|
|
|
#include "nsSize.h"
|
2005-04-06 05:54:26 +04:00
|
|
|
|
|
|
|
// ARGB -- raw buffer.. wont be changed.. good for storing data.
|
|
|
|
|
2010-09-15 20:02:42 +04:00
|
|
|
class gfxSubimageSurface;
|
|
|
|
|
2012-06-15 02:00:44 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace gfx {
|
2014-02-25 04:51:45 +04:00
|
|
|
class DataSourceSurface;
|
2012-06-15 02:00:44 +04:00
|
|
|
class SourceSurface;
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace gfx
|
|
|
|
} // namespace mozilla
|
2012-06-15 02:00:44 +04:00
|
|
|
|
2005-08-20 09:36:47 +04:00
|
|
|
/**
|
|
|
|
* A raw image buffer. The format can be set in the constructor. Its main
|
|
|
|
* purpose is for storing read-only images and using it as a source surface,
|
|
|
|
* but it can also be drawn to.
|
|
|
|
*/
|
2013-05-30 01:59:24 +04:00
|
|
|
class gfxImageSurface : public gfxASurface {
|
2005-04-06 05:54:26 +04:00
|
|
|
public:
|
2005-08-20 09:36:47 +04:00
|
|
|
/**
|
2008-07-09 12:22:20 +04:00
|
|
|
* Construct an image surface around an existing buffer of image data.
|
|
|
|
* @param aData A buffer containing the image data
|
|
|
|
* @param aSize The size of the buffer
|
|
|
|
* @param aStride The stride of the buffer
|
2005-08-20 09:36:47 +04:00
|
|
|
* @param format Format of the data
|
|
|
|
*
|
|
|
|
* @see gfxImageFormat
|
2008-07-09 12:22:20 +04:00
|
|
|
*/
|
2015-06-01 11:26:19 +03:00
|
|
|
gfxImageSurface(unsigned char* aData, const mozilla::gfx::IntSize& aSize,
|
2008-07-09 12:22:20 +04:00
|
|
|
long aStride, gfxImageFormat aFormat);
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2008-07-09 12:22:20 +04:00
|
|
|
/**
|
|
|
|
* Construct an image surface.
|
|
|
|
* @param aSize The size of the buffer
|
|
|
|
* @param format Format of the data
|
2005-08-20 09:36:47 +04:00
|
|
|
*
|
2008-07-09 12:22:20 +04:00
|
|
|
* @see gfxImageFormat
|
2005-08-20 09:36:47 +04:00
|
|
|
*/
|
2015-06-01 11:26:19 +03:00
|
|
|
gfxImageSurface(const mozilla::gfx::IntSize& size, gfxImageFormat format,
|
|
|
|
bool aClear = true);
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2013-04-19 14:13:18 +04:00
|
|
|
/**
|
|
|
|
* Construct an image surface, with a specified stride and allowing the
|
|
|
|
* allocation of more memory than required for the storage of the surface
|
|
|
|
* itself. When aStride and aMinimalAllocation are <=0, this constructor
|
|
|
|
* is the equivalent of the preceeding one.
|
|
|
|
*
|
|
|
|
* @param format Format of the data
|
|
|
|
* @param aSize The size of the buffer
|
|
|
|
* @param aStride The stride of the buffer - if <=0, use ComputeStride()
|
|
|
|
* @param aMinimalAllocation Allocate at least this many bytes. If smaller
|
|
|
|
* than width * stride, or width*stride <=0, this value is ignored.
|
|
|
|
* @param aClear
|
|
|
|
*
|
|
|
|
* @see gfxImageFormat
|
|
|
|
*/
|
2015-06-01 11:26:19 +03:00
|
|
|
gfxImageSurface(const mozilla::gfx::IntSize& aSize, gfxImageFormat aFormat,
|
2013-04-19 14:13:18 +04:00
|
|
|
long aStride, int32_t aMinimalAllocation, bool aClear);
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2014-08-08 05:17:30 +04:00
|
|
|
explicit gfxImageSurface(cairo_surface_t* csurf);
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2005-04-07 23:12:19 +04:00
|
|
|
virtual ~gfxImageSurface();
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2005-04-06 05:54:26 +04:00
|
|
|
// ImageSurface methods
|
2006-03-25 03:34:48 +03:00
|
|
|
gfxImageFormat Format() const { return mFormat; }
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2015-06-01 11:26:19 +03:00
|
|
|
virtual const mozilla::gfx::IntSize GetSize() const override { return mSize; }
|
2015-12-04 21:43:00 +03:00
|
|
|
int32_t Width() const {
|
|
|
|
if (mSize.width < 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return mSize.width;
|
2018-11-30 13:46:48 +03:00
|
|
|
}
|
2015-12-04 21:43:00 +03:00
|
|
|
int32_t Height() const {
|
|
|
|
if (mSize.height < 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return mSize.height;
|
2018-11-30 13:46:48 +03:00
|
|
|
}
|
|
|
|
|
2005-08-20 09:36:47 +04:00
|
|
|
/**
|
|
|
|
* Distance in bytes between the start of a line and the start of the
|
|
|
|
* next line.
|
|
|
|
*/
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t Stride() const { return mStride; }
|
2005-08-20 09:36:47 +04:00
|
|
|
/**
|
|
|
|
* Returns a pointer for the image data. Users of this function can
|
|
|
|
* write to it, but must not attempt to free the buffer.
|
|
|
|
*/
|
2008-06-11 03:46:32 +04:00
|
|
|
unsigned char* Data() const {
|
|
|
|
return mData;
|
|
|
|
} // delete this data under us and die.
|
|
|
|
/**
|
|
|
|
* Returns the total size of the image data.
|
|
|
|
*/
|
2015-12-04 21:43:00 +03:00
|
|
|
int32_t GetDataSize() const {
|
|
|
|
if (mStride < 0 || mSize.height < 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
2008-02-06 09:48:47 +03:00
|
|
|
return mStride * mSize.height;
|
2018-11-30 13:46:48 +03:00
|
|
|
}
|
|
|
|
|
2008-02-06 09:48:47 +03:00
|
|
|
/* Fast copy from another image surface; returns TRUE if successful, FALSE
|
|
|
|
* otherwise */
|
2011-09-29 10:19:26 +04:00
|
|
|
bool CopyFrom(gfxImageSurface* other);
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2012-06-15 02:00:44 +04:00
|
|
|
/**
|
|
|
|
* Fast copy from a source surface; returns TRUE if successful, FALSE
|
|
|
|
* otherwise Assumes that the format of this surface is compatable with
|
|
|
|
* aSurface
|
|
|
|
*/
|
|
|
|
bool CopyFrom(mozilla::gfx::SourceSurface* aSurface);
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2013-11-27 14:03:36 +04:00
|
|
|
/**
|
|
|
|
* Fast copy to a source surface; returns TRUE if successful, FALSE otherwise
|
|
|
|
* Assumes that the format of this surface is compatible with aSurface
|
|
|
|
*/
|
|
|
|
bool CopyTo(mozilla::gfx::SourceSurface* aSurface);
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2014-02-25 04:51:45 +04:00
|
|
|
/**
|
|
|
|
* Copy to a Moz2D DataSourceSurface.
|
2014-03-04 20:56:44 +04:00
|
|
|
* Marked as virtual so that browsercomps can access this method.
|
2014-02-25 04:51:45 +04:00
|
|
|
*/
|
2015-06-17 17:00:52 +03:00
|
|
|
virtual already_AddRefed<mozilla::gfx::DataSourceSurface>
|
|
|
|
CopyToB8G8R8A8DataSourceSurface();
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2010-09-15 20:02:42 +04:00
|
|
|
/* return new Subimage with pointing to original image starting from aRect.pos
|
|
|
|
* and size of aRect.size. New subimage keeping current image reference
|
|
|
|
*/
|
|
|
|
already_AddRefed<gfxSubimageSurface> GetSubimage(const gfxRect& aRect);
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual already_AddRefed<gfxImageSurface> GetAsImageSurface() override;
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2011-03-09 20:27:37 +03:00
|
|
|
/** See gfxASurface.h. */
|
2015-06-01 11:26:19 +03:00
|
|
|
static long ComputeStride(const mozilla::gfx::IntSize&, gfxImageFormat);
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2013-06-23 16:03:39 +04:00
|
|
|
virtual size_t SizeOfExcludingThis(
|
|
|
|
mozilla::MallocSizeOf aMallocSizeOf) const override;
|
|
|
|
virtual size_t SizeOfIncludingThis(
|
2015-03-21 19:28:04 +03:00
|
|
|
mozilla::MallocSizeOf aMallocSizeOf) const override;
|
|
|
|
virtual bool SizeOfIsMeasured() const override;
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2010-05-13 19:52:59 +04:00
|
|
|
protected:
|
|
|
|
gfxImageSurface();
|
2015-06-01 11:26:19 +03:00
|
|
|
void InitWithData(unsigned char* aData, const mozilla::gfx::IntSize& aSize,
|
2010-10-25 21:57:13 +04:00
|
|
|
long aStride, gfxImageFormat aFormat);
|
2013-04-19 14:13:18 +04:00
|
|
|
/**
|
|
|
|
* See the parameters to the matching constructor. This should only
|
|
|
|
* be called once, in the constructor, which has already set mSize
|
|
|
|
* and mFormat.
|
|
|
|
*/
|
|
|
|
void AllocateAndInit(long aStride, int32_t aMinimalAllocation, bool aClear);
|
2010-05-13 19:52:59 +04:00
|
|
|
void InitFromSurface(cairo_surface_t* csurf);
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2015-12-04 21:43:00 +03:00
|
|
|
long ComputeStride() const {
|
|
|
|
if (mSize.height < 0 || mSize.width < 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return ComputeStride(mSize, mFormat);
|
2018-11-30 13:46:48 +03:00
|
|
|
}
|
2006-08-10 02:43:06 +04:00
|
|
|
|
2011-09-13 18:49:01 +04:00
|
|
|
void MakeInvalid();
|
|
|
|
|
2015-06-01 11:26:19 +03:00
|
|
|
mozilla::gfx::IntSize mSize;
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mOwnsData;
|
2005-06-30 08:58:27 +04:00
|
|
|
unsigned char* mData;
|
2006-03-25 03:34:48 +03:00
|
|
|
gfxImageFormat mFormat;
|
2006-08-10 02:43:06 +04:00
|
|
|
long mStride;
|
2005-04-06 05:54:26 +04:00
|
|
|
};
|
|
|
|
|
2013-05-30 01:59:24 +04:00
|
|
|
class gfxSubimageSurface : public gfxImageSurface {
|
2010-09-15 20:02:42 +04:00
|
|
|
protected:
|
|
|
|
friend class gfxImageSurface;
|
|
|
|
gfxSubimageSurface(gfxImageSurface* aParent, unsigned char* aData,
|
2015-06-01 11:26:19 +03:00
|
|
|
const mozilla::gfx::IntSize& aSize,
|
2013-09-20 13:50:05 +04:00
|
|
|
gfxImageFormat aFormat);
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2010-09-15 20:02:42 +04:00
|
|
|
private:
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<gfxImageSurface> mParent;
|
2010-09-15 20:02:42 +04:00
|
|
|
};
|
|
|
|
|
2005-04-11 08:36:18 +04:00
|
|
|
#endif /* GFX_IMAGESURFACE_H */
|