2013-08-19 06:59:27 -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/. */
|
|
|
|
|
|
|
|
#ifndef GFXMEMCOWSURFACEWRAPPER
|
|
|
|
#define GFXMEMCOWSURFACEWRAPPER
|
|
|
|
|
|
|
|
#include "gfxReusableSurfaceWrapper.h"
|
|
|
|
|
|
|
|
class gfxImageSurface;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A cross-thread capable implementation of gfxReusableSurfaceWrapper based
|
|
|
|
* on gfxImageSurface.
|
|
|
|
*/
|
|
|
|
class gfxReusableImageSurfaceWrapper : public gfxReusableSurfaceWrapper {
|
|
|
|
public:
|
2014-08-07 18:17:30 -07:00
|
|
|
explicit gfxReusableImageSurfaceWrapper(gfxImageSurface* aSurface);
|
2014-07-15 08:37:45 -07:00
|
|
|
protected:
|
2013-08-19 06:59:27 -07:00
|
|
|
~gfxReusableImageSurfaceWrapper();
|
|
|
|
|
2014-07-15 08:37:45 -07:00
|
|
|
public:
|
2015-03-21 09:28:04 -07:00
|
|
|
const unsigned char* GetReadOnlyData() const override;
|
|
|
|
gfxImageFormat Format() override;
|
|
|
|
gfxReusableSurfaceWrapper* GetWritable(gfxImageSurface** aSurface) override;
|
|
|
|
void ReadLock() override;
|
|
|
|
void ReadUnlock() override;
|
2013-08-19 06:59:27 -07:00
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
Type GetType() override
|
2013-08-19 06:59:27 -07:00
|
|
|
{
|
|
|
|
return TYPE_IMAGE;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<gfxImageSurface> mSurface;
|
2013-08-19 06:59:27 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // GFXMEMCOWSURFACEWRAPPER
|