2008-02-06 06:48:47 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
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/. */
|
2008-02-06 06:48:47 +00:00
|
|
|
|
|
|
|
#ifndef GFX_QUARTZIMAGESURFACE_H
|
|
|
|
#define GFX_QUARTZIMAGESURFACE_H
|
|
|
|
|
|
|
|
#include "gfxASurface.h"
|
2013-10-07 23:15:59 +00:00
|
|
|
#include "nsSize.h"
|
|
|
|
|
|
|
|
class gfxImageSurface;
|
2008-02-06 06:48:47 +00:00
|
|
|
|
2013-05-29 21:59:24 +00:00
|
|
|
class gfxQuartzImageSurface : public gfxASurface {
|
2008-02-06 06:48:47 +00:00
|
|
|
public:
|
|
|
|
gfxQuartzImageSurface(gfxImageSurface *imageSurface);
|
|
|
|
gfxQuartzImageSurface(cairo_surface_t *csurf);
|
|
|
|
|
|
|
|
virtual ~gfxQuartzImageSurface();
|
|
|
|
|
2010-11-11 20:31:22 +00:00
|
|
|
already_AddRefed<gfxImageSurface> GetAsImageSurface();
|
2012-08-22 15:56:38 +00:00
|
|
|
virtual int32_t KnownMemoryUsed();
|
2013-03-05 22:22:28 +00:00
|
|
|
virtual const gfxIntSize GetSize() const { return gfxIntSize(mSize.width, mSize.height); }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
gfxIntSize mSize;
|
|
|
|
|
|
|
|
private:
|
|
|
|
gfxIntSize ComputeSize();
|
2008-02-06 06:48:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* GFX_QUARTZIMAGESURFACE_H */
|