2012-07-31 02:54:21 +00:00
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2010-10-27 04:56:31 +00:00
*
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-10-27 04:56:31 +00:00
# ifndef __mozilla_widget_nsShmImage_h__
# define __mozilla_widget_nsShmImage_h__
2011-04-03 02:14:00 +00:00
# include "mozilla/ipc/SharedMemorySysV.h"
2010-10-27 04:56:31 +00:00
# if defined(MOZ_X11) && defined(MOZ_HAVE_SHAREDMEMORYSYSV)
# define MOZ_HAVE_SHMIMAGE
# endif
# ifdef MOZ_HAVE_SHMIMAGE
2015-09-15 20:46:39 +00:00
# include "mozilla/gfx/2D.h"
2010-10-27 04:56:31 +00:00
# include "nsIWidget.h"
2013-09-24 20:45:13 +00:00
# include "nsAutoPtr.h"
2010-10-27 04:56:31 +00:00
2012-03-22 23:24:40 +00:00
# include "mozilla/X11Util.h"
2010-10-27 04:56:31 +00:00
# include <X11/Xlib.h>
# include <X11/Xutil.h>
# include <X11/extensions/XShm.h>
2015-09-15 20:46:39 +00:00
# ifdef MOZ_WIDGET_QT
2010-10-27 04:56:31 +00:00
class QRect ;
2014-02-21 02:08:53 +00:00
class QWindow ;
2015-09-15 20:46:39 +00:00
# endif
2010-10-27 04:56:31 +00:00
class nsShmImage {
2015-05-27 15:20:26 +00:00
// 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 )
2010-10-27 04:56:31 +00:00
2010-11-05 07:17:07 +00:00
typedef mozilla : : ipc : : SharedMemorySysV SharedMemorySysV ;
2010-10-27 04:56:31 +00:00
public :
2011-09-29 06:19:26 +00:00
static bool UseShm ( ) ;
2010-10-27 04:56:31 +00:00
static already_AddRefed < nsShmImage >
2015-09-23 18:49:05 +00:00
Create ( const mozilla : : gfx : : IntSize & aSize ,
2015-09-15 20:46:39 +00:00
Display * aDisplay , Visual * aVisual , unsigned int aDepth ) ;
static already_AddRefed < mozilla : : gfx : : DrawTarget >
2015-09-23 18:49:05 +00:00
EnsureShmImage ( const mozilla : : gfx : : IntSize & aSize ,
2015-09-15 20:46:39 +00:00
Display * aDisplay , Visual * aVisual , unsigned int aDepth ,
2015-10-18 05:24:48 +00:00
RefPtr < nsShmImage > & aImage ) ;
2010-10-27 04:56:31 +00:00
2014-06-20 11:08:25 +00:00
private :
2010-10-27 04:56:31 +00:00
~ nsShmImage ( ) {
if ( mImage ) {
2015-09-15 20:46:39 +00:00
mozilla : : FinishX ( mDisplay ) ;
2010-10-27 04:56:31 +00:00
if ( mXAttached ) {
2015-09-15 20:46:39 +00:00
XShmDetach ( mDisplay , & mInfo ) ;
2010-10-27 04:56:31 +00:00
}
XDestroyImage ( mImage ) ;
}
}
2014-06-20 11:08:25 +00:00
public :
2015-09-15 20:46:39 +00:00
already_AddRefed < mozilla : : gfx : : DrawTarget > CreateDrawTarget ( ) ;
2010-10-27 04:56:31 +00:00
2015-05-01 18:08:04 +00:00
# ifdef MOZ_WIDGET_GTK
2015-09-15 20:46:39 +00:00
void Put ( Display * aDisplay , Drawable aWindow , const nsIntRegion & aRegion ) ;
2010-10-27 04:56:31 +00:00
# elif defined(MOZ_WIDGET_QT)
2014-02-21 02:08:53 +00:00
void Put ( QWindow * aWindow , QRect & aRect ) ;
2010-10-27 04:56:31 +00:00
# endif
2015-09-23 18:49:05 +00:00
mozilla : : gfx : : IntSize Size ( ) const { return mSize ; }
2010-10-27 04:56:31 +00:00
private :
nsShmImage ( )
2012-07-30 14:20:58 +00:00
: mImage ( nullptr )
2015-09-15 20:46:39 +00:00
, mDisplay ( nullptr )
, mFormat ( mozilla : : gfx : : SurfaceFormat : : UNKNOWN )
2011-10-17 14:59:28 +00:00
, mXAttached ( false )
2010-10-27 04:56:31 +00:00
{ mInfo . shmid = SharedMemorySysV : : NULLHandle ( ) ; }
2015-10-18 05:24:48 +00:00
RefPtr < SharedMemorySysV > mSegment ;
2010-10-27 04:56:31 +00:00
XImage * mImage ;
2015-09-15 20:46:39 +00:00
Display * mDisplay ;
2010-10-27 04:56:31 +00:00
XShmSegmentInfo mInfo ;
2015-09-23 18:49:05 +00:00
mozilla : : gfx : : IntSize mSize ;
2015-09-15 20:46:39 +00:00
mozilla : : gfx : : SurfaceFormat mFormat ;
2011-09-29 06:19:26 +00:00
bool mXAttached ;
2010-10-27 04:56:31 +00:00
} ;
# endif // MOZ_HAVE_SHMIMAGE
# endif