2010-05-13 15:52:59 +00:00
|
|
|
// vim:set ts=4 sts=4 sw=4 et cin:
|
2010-02-20 03:46:54 +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/. */
|
2010-02-20 03:46:54 +00:00
|
|
|
|
|
|
|
#ifndef GFX_SHARED_IMAGESURFACE_H
|
|
|
|
#define GFX_SHARED_IMAGESURFACE_H
|
|
|
|
|
2012-11-07 06:56:54 +00:00
|
|
|
#include "gfxBaseSharedMemorySurface.h"
|
2010-02-20 03:46:54 +00:00
|
|
|
|
2012-11-07 06:56:54 +00:00
|
|
|
class gfxSharedImageSurface : public gfxBaseSharedMemorySurface<gfxImageSurface, gfxSharedImageSurface>
|
|
|
|
{
|
|
|
|
typedef gfxBaseSharedMemorySurface<gfxImageSurface, gfxSharedImageSurface> Super;
|
|
|
|
friend class gfxBaseSharedMemorySurface<gfxImageSurface, gfxSharedImageSurface>;
|
2010-02-20 03:46:54 +00:00
|
|
|
private:
|
2012-11-07 06:56:54 +00:00
|
|
|
gfxSharedImageSurface(const gfxIntSize& aSize, long aStride,
|
|
|
|
gfxASurface::gfxImageFormat aFormat,
|
|
|
|
const mozilla::ipc::Shmem& aShmem)
|
|
|
|
: Super(aSize, aStride, aFormat, aShmem)
|
|
|
|
{}
|
2010-02-20 03:46:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* GFX_SHARED_IMAGESURFACE_H */
|