2010-09-13 22:23:08 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
* vim: sw=2 ts=8 et :
|
|
|
|
*/
|
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-09-13 22:23:08 -07:00
|
|
|
|
2013-08-11 16:17:23 -07:00
|
|
|
#include "ShadowLayerUtilsX11.h"
|
|
|
|
#include <X11/X.h> // for Drawable, XID
|
|
|
|
#include <X11/Xlib.h> // for Display, Visual, etc
|
|
|
|
#include <X11/extensions/Xrender.h> // for XRenderPictFormat, etc
|
|
|
|
#include <X11/extensions/render.h> // for PictFormat
|
2012-01-10 02:54:38 -08:00
|
|
|
#include "cairo-xlib.h"
|
2013-08-11 16:17:23 -07:00
|
|
|
#include <stdint.h> // for uint32_t
|
|
|
|
#include "GLDefs.h" // for GLenum
|
|
|
|
#include "gfxPlatform.h" // for gfxPlatform
|
|
|
|
#include "gfxXlibSurface.h" // for gfxXlibSurface
|
2013-12-20 08:46:31 -08:00
|
|
|
#include "gfx2DGlue.h" // for Moz2D transistion helpers
|
2013-08-11 16:17:23 -07:00
|
|
|
#include "mozilla/X11Util.h" // for DefaultXDisplay, FinishX, etc
|
2013-12-20 08:46:30 -08:00
|
|
|
#include "mozilla/gfx/Point.h" // for IntSize
|
2013-08-11 16:17:23 -07:00
|
|
|
#include "mozilla/layers/CompositableForwarder.h"
|
|
|
|
#include "mozilla/layers/CompositorTypes.h" // for OpenMode
|
|
|
|
#include "mozilla/layers/ISurfaceAllocator.h" // for ISurfaceAllocator, etc
|
|
|
|
#include "mozilla/layers/LayerManagerComposite.h"
|
|
|
|
#include "mozilla/layers/LayersSurfaces.h" // for SurfaceDescriptor, etc
|
|
|
|
#include "mozilla/layers/ShadowLayers.h" // for ShadowLayerForwarder, etc
|
|
|
|
#include "mozilla/mozalloc.h" // for operator new
|
|
|
|
#include "nsAutoPtr.h" // for nsRefPtr
|
|
|
|
#include "nsCOMPtr.h" // for already_AddRefed
|
|
|
|
#include "nsDebug.h" // for NS_ERROR
|
|
|
|
#include "prenv.h" // for PR_GetEnv
|
2010-09-13 22:23:08 -07:00
|
|
|
|
2012-10-25 13:12:59 -07:00
|
|
|
using namespace mozilla::gl;
|
|
|
|
|
2010-09-13 22:23:08 -07:00
|
|
|
namespace mozilla {
|
2013-08-11 16:17:23 -07:00
|
|
|
namespace gl {
|
|
|
|
class GLContext;
|
|
|
|
class TextureImage;
|
|
|
|
}
|
|
|
|
|
2010-09-13 22:23:08 -07:00
|
|
|
namespace layers {
|
|
|
|
|
2010-09-23 18:00:06 -07:00
|
|
|
// Return true if we're likely compositing using X and so should use
|
|
|
|
// Xlib surfaces in shadow layers.
|
2011-09-28 23:19:26 -07:00
|
|
|
static bool
|
2010-09-23 18:00:06 -07:00
|
|
|
UsingXCompositing()
|
|
|
|
{
|
2013-08-30 14:30:10 -07:00
|
|
|
if (!PR_GetEnv("MOZ_LAYERS_ENABLE_XLIB_SURFACES")) {
|
|
|
|
return false;
|
|
|
|
}
|
2014-01-23 10:26:40 -08:00
|
|
|
return (gfxSurfaceType::Xlib ==
|
2010-09-23 18:00:06 -07:00
|
|
|
gfxPlatform::GetPlatform()->ScreenReferenceSurface()->GetType());
|
|
|
|
}
|
|
|
|
|
2010-09-13 22:23:08 -07:00
|
|
|
// LookReturn a pointer to |aFormat| that lives in the Xrender library.
|
|
|
|
// All code using render formats assumes it doesn't need to copy.
|
|
|
|
static XRenderPictFormat*
|
|
|
|
GetXRenderPictFormatFromId(Display* aDisplay, PictFormat aFormatId)
|
|
|
|
{
|
|
|
|
XRenderPictFormat tmplate;
|
|
|
|
tmplate.id = aFormatId;
|
|
|
|
return XRenderFindFormat(aDisplay, PictFormatID, &tmplate, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
SurfaceDescriptorX11::SurfaceDescriptorX11(gfxXlibSurface* aSurf)
|
|
|
|
: mId(aSurf->XDrawable())
|
2013-12-31 01:06:12 -08:00
|
|
|
, mSize(aSurf->GetSize().ToIntSize())
|
2012-01-10 02:54:38 -08:00
|
|
|
{
|
|
|
|
const XRenderPictFormat *pictFormat = aSurf->XRenderFormat();
|
|
|
|
if (pictFormat) {
|
|
|
|
mFormat = pictFormat->id;
|
|
|
|
} else {
|
|
|
|
mFormat = cairo_xlib_surface_get_visual(aSurf->CairoSurface())->visualid;
|
|
|
|
}
|
|
|
|
}
|
2010-09-13 22:23:08 -07:00
|
|
|
|
2012-01-10 02:54:38 -08:00
|
|
|
SurfaceDescriptorX11::SurfaceDescriptorX11(Drawable aDrawable, XID aFormatID,
|
2013-12-20 08:46:30 -08:00
|
|
|
const gfx::IntSize& aSize)
|
2012-01-10 02:54:38 -08:00
|
|
|
: mId(aDrawable)
|
|
|
|
, mFormat(aFormatID)
|
2011-09-20 09:20:51 -07:00
|
|
|
, mSize(aSize)
|
|
|
|
{ }
|
|
|
|
|
2010-09-13 22:23:08 -07:00
|
|
|
already_AddRefed<gfxXlibSurface>
|
|
|
|
SurfaceDescriptorX11::OpenForeign() const
|
|
|
|
{
|
|
|
|
Display* display = DefaultXDisplay();
|
|
|
|
Screen* screen = DefaultScreenOfDisplay(display);
|
|
|
|
|
2012-01-10 02:54:38 -08:00
|
|
|
nsRefPtr<gfxXlibSurface> surf;
|
|
|
|
XRenderPictFormat* pictFormat = GetXRenderPictFormatFromId(display, mFormat);
|
|
|
|
if (pictFormat) {
|
2013-12-20 08:46:31 -08:00
|
|
|
surf = new gfxXlibSurface(screen, mId, pictFormat, gfx::ThebesIntSize(mSize));
|
2012-01-10 02:54:38 -08:00
|
|
|
} else {
|
2012-08-19 21:20:37 -07:00
|
|
|
Visual* visual;
|
|
|
|
int depth;
|
|
|
|
FindVisualAndDepth(display, mFormat, &visual, &depth);
|
2012-01-10 02:54:38 -08:00
|
|
|
if (!visual)
|
2012-07-30 07:20:58 -07:00
|
|
|
return nullptr;
|
2012-01-10 02:54:38 -08:00
|
|
|
|
2013-12-20 08:46:31 -08:00
|
|
|
surf = new gfxXlibSurface(display, mId, visual, gfx::ThebesIntSize(mSize));
|
2012-01-10 02:54:38 -08:00
|
|
|
}
|
2012-07-30 07:20:58 -07:00
|
|
|
return surf->CairoStatus() ? nullptr : surf.forget();
|
2010-09-13 22:23:08 -07:00
|
|
|
}
|
|
|
|
|
2010-09-13 22:23:08 -07:00
|
|
|
/*static*/ void
|
|
|
|
ShadowLayerForwarder::PlatformSyncBeforeUpdate()
|
|
|
|
{
|
2010-09-23 18:00:06 -07:00
|
|
|
if (UsingXCompositing()) {
|
|
|
|
// If we're using X surfaces, then we need to finish all pending
|
|
|
|
// operations on the back buffers before handing them to the
|
|
|
|
// parent, otherwise the surface might be used by the parent's
|
|
|
|
// Display in between two operations queued by our Display.
|
2012-09-24 21:20:41 -07:00
|
|
|
FinishX(DefaultXDisplay());
|
2010-09-23 18:00:06 -07:00
|
|
|
}
|
2010-09-13 22:23:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/*static*/ void
|
2013-04-25 15:25:33 -07:00
|
|
|
LayerManagerComposite::PlatformSyncBeforeReplyUpdate()
|
2010-09-13 22:23:08 -07:00
|
|
|
{
|
2010-09-23 18:00:06 -07:00
|
|
|
if (UsingXCompositing()) {
|
|
|
|
// If we're using X surfaces, we need to finish all pending
|
|
|
|
// operations on the *front buffers* before handing them back to
|
|
|
|
// the child, even though they will be read operations.
|
|
|
|
// Otherwise, the child might start scribbling on new back buffers
|
|
|
|
// that are still participating in requests as old front buffers.
|
2012-07-30 19:54:21 -07:00
|
|
|
FinishX(DefaultXDisplay());
|
2010-09-23 18:00:06 -07:00
|
|
|
}
|
2010-09-13 22:23:08 -07:00
|
|
|
}
|
|
|
|
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
/*static*/ bool
|
2013-04-25 15:25:33 -07:00
|
|
|
LayerManagerComposite::SupportsDirectTexturing()
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-09-13 22:23:08 -07:00
|
|
|
} // namespace layers
|
|
|
|
} // namespace mozilla
|