2012-07-30 19:54:21 -07:00
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2010-10-26 21:56:31 -07:00
*
2012-05-21 04:12:37 -07: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-26 21:56:31 -07:00
# ifndef __mozilla_widget_nsShmImage_h__
# define __mozilla_widget_nsShmImage_h__
2016-02-18 07:56:15 -08:00
# if defined(MOZ_X11)
2010-10-26 21:56:31 -07:00
# define MOZ_HAVE_SHMIMAGE
# endif
# ifdef MOZ_HAVE_SHMIMAGE
2015-09-15 13:46:39 -07:00
# include "mozilla/gfx/2D.h"
2010-10-26 21:56:31 -07:00
# include "nsIWidget.h"
2013-09-24 13:45:13 -07:00
# include "nsAutoPtr.h"
2010-10-26 21:56:31 -07:00
# include <X11/Xlib.h>
# include <X11/extensions/XShm.h>
class nsShmImage {
2016-02-25 11:38:05 -08: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-26 21:56:31 -07:00
public :
2016-02-25 11:38:05 -08:00
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 )
: mImage ( nullptr )
, mDisplay ( aDisplay )
, mWindow ( aWindow )
, mVisual ( aVisual )
, mDepth ( aDepth )
, mFormat ( mozilla : : gfx : : SurfaceFormat : : UNKNOWN )
{
mInfo . shmid = - 1 ;
}
2010-10-26 21:56:31 -07:00
private :
2016-02-25 11:38:05 -08:00
~ nsShmImage ( )
{
DestroyImage ( ) ;
}
bool CreateShmSegment ( ) ;
void DestroyShmSegment ( ) ;
bool CreateImage ( const mozilla : : gfx : : IntSize & aSize ) ;
void DestroyImage ( ) ;
XImage * mImage ;
Display * mDisplay ;
Drawable mWindow ;
Visual * mVisual ;
unsigned int mDepth ;
XShmSegmentInfo mInfo ;
mozilla : : gfx : : SurfaceFormat mFormat ;
2010-10-26 21:56:31 -07:00
} ;
# endif // MOZ_HAVE_SHMIMAGE
# endif