CLOSED TREE: TraceMonkey merge head. (a=blockers)
[mozilla-central.git] / widget / src / shared / nsShmImage.h
blob967fcb44d74e36463c7ba4852a239d4aa3ee684d
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
3 * ***** BEGIN LICENSE BLOCK *****
4 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
6 * The contents of this file are subject to the Mozilla Public License Version
7 * 1.1 (the "License"); you may not use this file except in compliance with
8 * the License. You may obtain a copy of the License at
9 * http://www.mozilla.org/MPL/
11 * Software distributed under the License is distributed on an "AS IS" basis,
12 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
13 * for the specific language governing rights and limitations under the
14 * License.
16 * The Original Code is the Mozilla browser.
18 * The Initial Developer of the Original Code is
19 * Netscape Communications Corporation.
20 * Portions created by the Initial Developer are Copyright (C) 1999
21 * the Initial Developer. All Rights Reserved.
23 * Contributor(s):
24 * Chris Jones <jones.chris.g@gmail.com>
25 * Oleg Romashin <romaxa@gmail.com>
27 * Alternatively, the contents of this file may be used under the terms of
28 * either the GNU General Public License Version 2 or later (the "GPL"), or
29 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
30 * in which case the provisions of the GPL or the LGPL are applicable instead
31 * of those above. If you wish to allow use of your version of this file only
32 * under the terms of either the GPL or the LGPL, and not to allow others to
33 * use your version of this file under the terms of the MPL, indicate your
34 * decision by deleting the provisions above and replace them with the notice
35 * and other provisions required by the GPL or the LGPL. If you do not delete
36 * the provisions above, a recipient may use your version of this file under
37 * the terms of any one of the MPL, the GPL or the LGPL.
39 * ***** END LICENSE BLOCK ***** */
41 #ifndef __mozilla_widget_nsShmImage_h__
42 #define __mozilla_widget_nsShmImage_h__
44 #ifdef MOZ_IPC
45 # include "mozilla/ipc/SharedMemorySysV.h"
46 #endif
48 #if defined(MOZ_X11) && defined(MOZ_HAVE_SHAREDMEMORYSYSV)
49 # define MOZ_HAVE_SHMIMAGE
50 #endif
52 #ifdef MOZ_HAVE_SHMIMAGE
54 #include "nsIWidget.h"
55 #include "gfxASurface.h"
57 #include <X11/Xlib.h>
58 #include <X11/Xutil.h>
59 #include <X11/extensions/XShm.h>
61 #if defined(MOZ_WIDGET_GTK2)
62 #define DISPLAY gdk_x11_get_default_xdisplay
63 #elif defined(MOZ_WIDGET_QT)
64 #include "QX11Info"
65 #define DISPLAY QX11Info().display
66 #endif
68 class QRect;
69 class QWidget;
71 class nsShmImage {
72 NS_INLINE_DECL_REFCOUNTING(nsShmImage)
74 typedef mozilla::ipc::SharedMemorySysV SharedMemorySysV;
76 public:
77 typedef gfxASurface::gfxImageFormat Format;
79 static PRBool UseShm();
80 static already_AddRefed<nsShmImage>
81 Create(const gfxIntSize& aSize, Visual* aVisual, unsigned int aDepth);
82 static already_AddRefed<gfxASurface>
83 EnsureShmImage(const gfxIntSize& aSize, Visual* aVisual, unsigned int aDepth,
84 nsRefPtr<nsShmImage>& aImage);
86 ~nsShmImage() {
87 if (mImage) {
88 XSync(DISPLAY(), False);
89 if (mXAttached) {
90 XShmDetach(DISPLAY(), &mInfo);
92 XDestroyImage(mImage);
96 already_AddRefed<gfxASurface> AsSurface();
98 #if defined(MOZ_WIDGET_GTK2)
99 void Put(GdkWindow* aWindow, GdkRectangle* aRects, GdkRectangle* aEnd);
100 #elif defined(MOZ_WIDGET_QT)
101 void Put(QWidget* aWindow, QRect& aRect);
102 #endif
104 gfxIntSize Size() const { return mSize; }
106 private:
107 nsShmImage()
108 : mImage(nsnull)
109 , mXAttached(PR_FALSE)
110 { mInfo.shmid = SharedMemorySysV::NULLHandle(); }
112 nsRefPtr<SharedMemorySysV> mSegment;
113 XImage* mImage;
114 XShmSegmentInfo mInfo;
115 gfxIntSize mSize;
116 Format mFormat;
117 PRPackedBool mXAttached;
120 #endif // MOZ_HAVE_SHMIMAGE
122 #endif