2018-11-30 18:39:55 +03:00
|
|
|
// vim:set ts=4 sts=2 sw=2 et cin:
|
2018-11-30 22:52:05 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
2012-05-21 15:12:37 +04: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 06:46:54 +03:00
|
|
|
|
|
|
|
#ifndef GFX_SHARED_IMAGESURFACE_H
|
|
|
|
#define GFX_SHARED_IMAGESURFACE_H
|
|
|
|
|
2012-11-07 10:56:54 +04:00
|
|
|
#include "gfxBaseSharedMemorySurface.h"
|
2010-02-20 06:46:54 +03:00
|
|
|
|
2012-11-07 10:56:54 +04:00
|
|
|
class gfxSharedImageSurface
|
|
|
|
: public gfxBaseSharedMemorySurface<gfxImageSurface,
|
|
|
|
gfxSharedImageSurface> {
|
|
|
|
typedef gfxBaseSharedMemorySurface<gfxImageSurface, gfxSharedImageSurface>
|
|
|
|
Super;
|
|
|
|
friend class gfxBaseSharedMemorySurface<gfxImageSurface,
|
|
|
|
gfxSharedImageSurface>;
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2010-02-20 06:46:54 +03:00
|
|
|
private:
|
2015-06-01 11:26:19 +03:00
|
|
|
gfxSharedImageSurface(const mozilla::gfx::IntSize& aSize, long aStride,
|
|
|
|
gfxImageFormat aFormat,
|
2012-11-07 10:56:54 +04:00
|
|
|
const mozilla::ipc::Shmem& aShmem)
|
|
|
|
: Super(aSize, aStride, aFormat, aShmem) {}
|
2010-02-20 06:46:54 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* GFX_SHARED_IMAGESURFACE_H */
|