2018-11-30 22:52:05 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
2012-05-21 15:12:37 +04: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/. */
|
2005-04-07 23:11:59 +04:00
|
|
|
|
2005-04-11 08:36:18 +04:00
|
|
|
#ifndef GFX_XLIBSURFACE_H
|
|
|
|
#define GFX_XLIBSURFACE_H
|
2005-04-07 23:11:59 +04:00
|
|
|
|
|
|
|
#include "gfxASurface.h"
|
|
|
|
|
2007-01-27 04:26:49 +03:00
|
|
|
#include <X11/extensions/Xrender.h>
|
|
|
|
#include <X11/Xlib.h>
|
2016-08-29 23:51:43 +03:00
|
|
|
#include "X11UndefineNone.h"
|
2005-04-07 23:11:59 +04:00
|
|
|
|
2011-08-05 05:13:25 +04:00
|
|
|
#include "GLXLibrary.h"
|
|
|
|
|
2013-09-25 00:45:13 +04:00
|
|
|
#include "nsSize.h"
|
|
|
|
|
2015-04-20 16:53:42 +03:00
|
|
|
// Although the dimension parameters in the xCreatePixmapReq wire protocol are
|
|
|
|
// 16-bit unsigned integers, the server's CreatePixmap returns BadAlloc if
|
|
|
|
// either dimension cannot be represented by a 16-bit *signed* integer.
|
|
|
|
#define XLIB_IMAGE_SIDE_SIZE_LIMIT 0x7fff
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class gfxXlibSurface final : public gfxASurface {
|
2005-04-07 23:11:59 +04:00
|
|
|
public:
|
2010-07-02 07:55:24 +04:00
|
|
|
// construct a wrapper around the specified drawable with dpy/visual.
|
2005-06-30 08:58:27 +04:00
|
|
|
// Will use XGetGeometry to query the window/pixmap size.
|
|
|
|
gfxXlibSurface(Display* dpy, Drawable drawable, Visual* visual);
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2010-07-02 07:55:24 +04:00
|
|
|
// construct a wrapper around the specified drawable with dpy/visual,
|
|
|
|
// and known width/height.
|
2015-06-01 11:26:19 +03:00
|
|
|
gfxXlibSurface(Display* dpy, Drawable drawable, Visual* visual,
|
|
|
|
const mozilla::gfx::IntSize& size);
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2010-07-02 07:55:24 +04:00
|
|
|
// construct a wrapper around the specified drawable with dpy/format,
|
|
|
|
// and known width/height.
|
2017-03-09 14:29:44 +03:00
|
|
|
gfxXlibSurface(::Screen* screen, Drawable drawable, XRenderPictFormat* format,
|
2015-06-01 11:26:19 +03:00
|
|
|
const mozilla::gfx::IntSize& size);
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2014-09-02 17:47:43 +04:00
|
|
|
explicit gfxXlibSurface(cairo_surface_t* csurf);
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2010-07-02 07:55:24 +04:00
|
|
|
// create a new Pixmap and wrapper surface.
|
|
|
|
// |relatedDrawable| provides a hint to the server for determining whether
|
|
|
|
// the pixmap should be in video or system memory. It must be on
|
|
|
|
// |screen| (if specified).
|
|
|
|
static already_AddRefed<gfxXlibSurface> Create(
|
2017-03-09 14:29:44 +03:00
|
|
|
::Screen* screen, Visual* visual, const mozilla::gfx::IntSize& size,
|
2016-08-29 23:51:43 +03:00
|
|
|
Drawable relatedDrawable = X11None);
|
2013-10-26 01:25:40 +04:00
|
|
|
static cairo_surface_t* CreateCairoSurface(
|
2017-03-09 14:29:44 +03:00
|
|
|
::Screen* screen, Visual* visual, const mozilla::gfx::IntSize& size,
|
2016-08-29 23:51:43 +03:00
|
|
|
Drawable relatedDrawable = X11None);
|
2010-07-02 07:55:24 +04:00
|
|
|
static already_AddRefed<gfxXlibSurface> Create(
|
2017-03-09 14:29:44 +03:00
|
|
|
::Screen* screen, XRenderPictFormat* format,
|
|
|
|
const mozilla::gfx::IntSize& size, Drawable relatedDrawable = X11None);
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2005-04-07 23:11:59 +04:00
|
|
|
virtual ~gfxXlibSurface();
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2019-04-11 15:36:51 +03:00
|
|
|
already_AddRefed<gfxASurface> CreateSimilarSurface(
|
2015-06-01 11:26:19 +03:00
|
|
|
gfxContentType aType, const mozilla::gfx::IntSize& aSize) override;
|
2019-04-11 15:36:51 +03:00
|
|
|
void Finish() override;
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2019-04-11 15:36:51 +03:00
|
|
|
const mozilla::gfx::IntSize GetSize() const override;
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2005-06-30 08:58:27 +04:00
|
|
|
Display* XDisplay() { return mDisplay; }
|
2017-03-09 14:29:44 +03:00
|
|
|
::Screen* XScreen();
|
2005-06-30 08:58:27 +04:00
|
|
|
Drawable XDrawable() { return mDrawable; }
|
2010-09-08 19:55:14 +04:00
|
|
|
XRenderPictFormat* XRenderFormat();
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2017-03-09 14:29:44 +03:00
|
|
|
static int DepthOfVisual(const ::Screen* screen, const Visual* visual);
|
|
|
|
static Visual* FindVisual(::Screen* screen, gfxImageFormat format);
|
2005-08-20 09:36:47 +04:00
|
|
|
static XRenderPictFormat* FindRenderFormat(Display* dpy,
|
|
|
|
gfxImageFormat format);
|
2013-10-26 01:25:40 +04:00
|
|
|
static bool GetColormapAndVisual(cairo_surface_t* aXlibSurface,
|
|
|
|
Colormap* colormap, Visual** visual);
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2005-10-06 08:02:10 +04:00
|
|
|
// take ownership of a passed-in Pixmap, calling XFreePixmap on it
|
|
|
|
// when the gfxXlibSurface is destroyed.
|
2011-07-18 17:20:27 +04:00
|
|
|
void TakePixmap();
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2010-09-14 09:23:08 +04:00
|
|
|
// Release ownership of this surface's Pixmap. This is only valid
|
|
|
|
// on gfxXlibSurfaces for which the user called TakePixmap(), or
|
|
|
|
// on those created by a Create() factory method.
|
2011-07-18 17:20:27 +04:00
|
|
|
Drawable ReleasePixmap();
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2010-07-02 08:04:01 +04:00
|
|
|
// Find a visual and colormap pair suitable for rendering to this surface.
|
2011-09-29 10:19:26 +04:00
|
|
|
bool GetColormapAndVisual(Colormap* colormap, Visual** visual);
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2011-08-05 05:13:25 +04:00
|
|
|
GLXPixmap GetGLXPixmap();
|
2015-07-30 19:40:56 +03:00
|
|
|
// Binds a GLXPixmap backed by this context's surface.
|
|
|
|
// Primarily for use in sharing surfaces.
|
|
|
|
void BindGLXPixmap(GLXPixmap aPixmap);
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2012-08-14 15:47:49 +04:00
|
|
|
// Return true if cairo will take its slow path when this surface is used
|
|
|
|
// in a pattern with EXTEND_PAD. As a workaround for XRender's RepeatPad
|
|
|
|
// not being implemented correctly on old X servers, cairo avoids XRender
|
|
|
|
// and instead reads back to perform EXTEND_PAD with pixman. Cairo does
|
|
|
|
// this for servers older than xorg-server 1.7.
|
|
|
|
bool IsPadSlow() {
|
|
|
|
// The test here matches that for buggy_pad_reflect in
|
|
|
|
// _cairo_xlib_device_create.
|
|
|
|
return VendorRelease(mDisplay) >= 60700000 ||
|
|
|
|
VendorRelease(mDisplay) < 10699000;
|
|
|
|
}
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2005-10-06 08:02:10 +04:00
|
|
|
protected:
|
2010-06-27 12:04:33 +04:00
|
|
|
// if TakePixmap() has been called on this
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mPixmapTaken;
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2005-06-30 08:58:27 +04:00
|
|
|
Display* mDisplay;
|
|
|
|
Drawable mDrawable;
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2015-06-01 11:26:19 +03:00
|
|
|
const mozilla::gfx::IntSize DoSizeQuery();
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2011-08-05 05:13:25 +04:00
|
|
|
GLXPixmap mGLXPixmap;
|
2005-04-07 23:11:59 +04:00
|
|
|
};
|
|
|
|
|
2005-04-11 08:36:18 +04:00
|
|
|
#endif /* GFX_XLIBSURFACE_H */
|