gecko/gfx/thebes/gfxReusableImageSurfaceWrapper.cpp
Chris Lord ce468943a9 Bug 747811 - Add gfxReusableImageSurfaceWrapper. r=BenWa
Add an implementation of gfxReusableSurfaceWrapper based on gfxImageSurface
and use it on Android to avoid the overhead of shared memory.
2013-08-19 14:59:27 +01:00

62 lines
1.5 KiB
C++

/* 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/. */
#include "gfxReusableImageSurfaceWrapper.h"
#include "gfxImageSurface.h"
gfxReusableImageSurfaceWrapper::gfxReusableImageSurfaceWrapper(gfxImageSurface* aSurface)
: mSurface(aSurface)
{
MOZ_COUNT_CTOR(gfxReusableImageSurfaceWrapper);
}
gfxReusableImageSurfaceWrapper::~gfxReusableImageSurfaceWrapper()
{
MOZ_COUNT_DTOR(gfxReusableImageSurfaceWrapper);
}
void
gfxReusableImageSurfaceWrapper::ReadLock()
{
NS_CheckThreadSafe(_mOwningThread.GetThread(), "Only the owner thread can call ReadLock");
AddRef();
}
void
gfxReusableImageSurfaceWrapper::ReadUnlock()
{
Release();
}
gfxReusableSurfaceWrapper*
gfxReusableImageSurfaceWrapper::GetWritable(gfxImageSurface** aSurface)
{
NS_CheckThreadSafe(_mOwningThread.GetThread(), "Only the owner thread can call GetWritable");
if (mRefCnt == 1) {
*aSurface = mSurface;
return this;
}
// Something else is reading the surface, copy it
gfxImageSurface* copySurface = new gfxImageSurface(mSurface->GetSize(), mSurface->Format(), false);
copySurface->CopyFrom(mSurface);
*aSurface = copySurface;
return new gfxReusableImageSurfaceWrapper(copySurface);
}
const unsigned char*
gfxReusableImageSurfaceWrapper::GetReadOnlyData() const
{
return mSurface->Data();
}
gfxASurface::gfxImageFormat
gfxReusableImageSurfaceWrapper::Format()
{
return mSurface->Format();
}