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