mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
73 lines
2.0 KiB
C++
73 lines
2.0 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
*
|
|
* 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 __mozilla_widget_nsShmImage_h__
|
|
#define __mozilla_widget_nsShmImage_h__
|
|
|
|
#if defined(MOZ_X11)
|
|
# define MOZ_HAVE_SHMIMAGE
|
|
#endif
|
|
|
|
#ifdef MOZ_HAVE_SHMIMAGE
|
|
|
|
#include "mozilla/gfx/2D.h"
|
|
#include "nsIWidget.h"
|
|
#include "nsAutoPtr.h"
|
|
#include "Units.h"
|
|
|
|
#include <X11/Xlib.h>
|
|
#include <X11/extensions/XShm.h>
|
|
|
|
class nsShmImage {
|
|
// bug 1168843, compositor thread may create shared memory instances that are destroyed by main thread on shutdown, so this must use thread-safe RC to avoid hitting assertion
|
|
NS_INLINE_DECL_THREADSAFE_REFCOUNTING(nsShmImage)
|
|
|
|
public:
|
|
static bool UseShm();
|
|
|
|
already_AddRefed<mozilla::gfx::DrawTarget>
|
|
CreateDrawTarget(const mozilla::LayoutDeviceIntRegion& aRegion);
|
|
|
|
void Put(const mozilla::LayoutDeviceIntRegion& aRegion);
|
|
|
|
nsShmImage(Display* aDisplay,
|
|
Drawable aWindow,
|
|
Visual* aVisual,
|
|
unsigned int aDepth);
|
|
|
|
private:
|
|
~nsShmImage();
|
|
|
|
bool InitExtension();
|
|
|
|
bool CreateShmSegment();
|
|
void DestroyShmSegment();
|
|
|
|
bool CreateImage(const mozilla::gfx::IntSize& aSize);
|
|
void DestroyImage();
|
|
|
|
static Bool FindEvent(Display* aDisplay, XEvent* aEvent, XPointer aArg);
|
|
bool RequestWasProcessed();
|
|
void WaitForRequest();
|
|
void SendEvent();
|
|
|
|
XImage* mImage;
|
|
Display* mDisplay;
|
|
Window mWindow;
|
|
Visual* mVisual;
|
|
unsigned int mDepth;
|
|
XShmSegmentInfo mInfo;
|
|
mozilla::gfx::SurfaceFormat mFormat;
|
|
Pixmap mPixmap;
|
|
GC mGC;
|
|
unsigned long mRequest;
|
|
unsigned long mPreviousRequestProcessed;
|
|
};
|
|
|
|
#endif // MOZ_HAVE_SHMIMAGE
|
|
|
|
#endif
|