2009-12-02 00:05:26 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 2; 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/. */
|
2009-12-02 00:05:26 +03:00
|
|
|
|
|
|
|
#ifndef gfx_SharedDIB_h__
|
|
|
|
#define gfx_SharedDIB_h__
|
|
|
|
|
|
|
|
#include "base/shared_memory.h"
|
|
|
|
#include "nscore.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace gfx {
|
|
|
|
|
|
|
|
class SharedDIB
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
typedef base::SharedMemoryHandle Handle;
|
|
|
|
|
2015-08-14 06:46:47 +03:00
|
|
|
static const uint32_t kBytesPerPixel = 4;
|
|
|
|
|
2009-12-02 00:05:26 +03:00
|
|
|
public:
|
|
|
|
SharedDIB();
|
|
|
|
~SharedDIB();
|
|
|
|
|
|
|
|
// Create and allocate a new shared dib.
|
2012-08-22 19:56:38 +04:00
|
|
|
nsresult Create(uint32_t aSize);
|
2009-12-02 00:05:26 +03:00
|
|
|
|
|
|
|
// Destroy or release resources associated with this dib.
|
|
|
|
nsresult Close();
|
|
|
|
|
|
|
|
// Returns true if this object contains a valid dib.
|
|
|
|
bool IsValid();
|
|
|
|
|
|
|
|
// Wrap a new shared dib around allocated shared memory. Note aHandle must point
|
|
|
|
// to a memory section large enough to hold a dib of size aSize, otherwise this
|
|
|
|
// will fail.
|
2012-08-22 19:56:38 +04:00
|
|
|
nsresult Attach(Handle aHandle, uint32_t aSize);
|
2009-12-02 00:05:26 +03:00
|
|
|
|
|
|
|
// Returns a SharedMemoryHandle suitable for sharing with another process.
|
2015-04-01 11:40:35 +03:00
|
|
|
nsresult ShareToProcess(base::ProcessId aTargetPid, Handle *aNewHandle);
|
2009-12-02 00:05:26 +03:00
|
|
|
|
|
|
|
protected:
|
|
|
|
base::SharedMemory *mShMem;
|
|
|
|
};
|
|
|
|
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace gfx
|
|
|
|
} // namespace mozilla
|
2009-12-02 00:05:26 +03:00
|
|
|
|
|
|
|
#endif
|