2003-11-14 15:54:54 +00:00
|
|
|
/***********************************************************
|
|
|
|
|
|
|
|
|
|
Copyright 1987, 1998 The Open Group
|
|
|
|
|
|
|
|
|
|
Permission to use, copy, modify, distribute, and sell this software and its
|
|
|
|
|
documentation for any purpose is hereby granted without fee, provided that
|
|
|
|
|
the above copyright notice appear in all copies and that both that
|
|
|
|
|
copyright notice and this permission notice appear in supporting
|
|
|
|
|
documentation.
|
|
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
|
|
|
|
|
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
|
|
|
|
|
Except as contained in this notice, the name of The Open Group shall not be
|
|
|
|
|
used in advertising or otherwise to promote the sale, use or other dealings
|
|
|
|
|
in this Software without prior written authorization from The Open Group.
|
|
|
|
|
|
|
|
|
|
Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.
|
|
|
|
|
|
|
|
|
|
All Rights Reserved
|
|
|
|
|
|
|
|
|
|
Permission to use, copy, modify, and distribute this software and its
|
|
|
|
|
documentation for any purpose and without fee is hereby granted,
|
|
|
|
|
provided that the above copyright notice appear in all copies and that
|
|
|
|
|
both that copyright notice and this permission notice appear in
|
|
|
|
|
supporting documentation, and that the name of Digital not be
|
|
|
|
|
used in advertising or publicity pertaining to distribution of the
|
|
|
|
|
software without specific, written prior permission.
|
|
|
|
|
|
|
|
|
|
DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
|
|
|
|
|
ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
|
|
|
|
|
DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
|
|
|
|
|
ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
|
|
|
|
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
|
|
|
|
|
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
|
|
|
|
|
SOFTWARE.
|
|
|
|
|
|
|
|
|
|
******************************************************************/
|
2003-11-25 19:29:01 +00:00
|
|
|
|
2003-11-14 15:54:54 +00:00
|
|
|
#ifndef PIXMAP_H
|
|
|
|
|
#define PIXMAP_H
|
|
|
|
|
|
2005-07-03 08:53:54 +00:00
|
|
|
#include "misc.h"
|
2003-11-14 15:54:54 +00:00
|
|
|
#include "screenint.h"
|
2012-06-14 15:24:46 +01:00
|
|
|
#include "regionstr.h"
|
2015-06-30 14:54:42 +10:00
|
|
|
#include <X11/extensions/randr.h>
|
2003-11-14 15:54:54 +00:00
|
|
|
/* types for Drawable */
|
|
|
|
|
#define DRAWABLE_WINDOW 0
|
|
|
|
|
#define DRAWABLE_PIXMAP 1
|
|
|
|
|
#define UNDRAWABLE_WINDOW 2
|
|
|
|
|
|
2006-12-14 14:46:03 -05:00
|
|
|
/* corresponding type masks for dixLookupDrawable() */
|
|
|
|
|
#define M_DRAWABLE_WINDOW (1<<0)
|
|
|
|
|
#define M_DRAWABLE_PIXMAP (1<<1)
|
|
|
|
|
#define M_UNDRAWABLE_WINDOW (1<<2)
|
|
|
|
|
#define M_ANY (-1)
|
|
|
|
|
#define M_WINDOW (M_DRAWABLE_WINDOW|M_UNDRAWABLE_WINDOW)
|
2010-10-11 10:49:56 -04:00
|
|
|
#define M_DRAWABLE (M_DRAWABLE_WINDOW|M_DRAWABLE_PIXMAP)
|
2006-12-14 14:46:03 -05:00
|
|
|
#define M_UNDRAWABLE (M_UNDRAWABLE_WINDOW)
|
|
|
|
|
|
2003-11-14 15:54:54 +00:00
|
|
|
/* flags to PaintWindow() */
|
|
|
|
|
#define PW_BACKGROUND 0
|
|
|
|
|
#define PW_BORDER 1
|
|
|
|
|
|
|
|
|
|
#define NullPixmap ((PixmapPtr)0)
|
|
|
|
|
|
|
|
|
|
typedef struct _Drawable *DrawablePtr;
|
|
|
|
|
typedef struct _Pixmap *PixmapPtr;
|
|
|
|
|
|
2012-06-14 15:24:46 +01:00
|
|
|
typedef struct _PixmapDirtyUpdate *PixmapDirtyUpdatePtr;
|
|
|
|
|
|
2003-11-14 15:54:54 +00:00
|
|
|
typedef union _PixUnion {
|
|
|
|
|
PixmapPtr pixmap;
|
|
|
|
|
unsigned long pixel;
|
|
|
|
|
} PixUnion;
|
|
|
|
|
|
|
|
|
|
#define SamePixUnion(a,b,isPixel)\
|
|
|
|
|
((isPixel) ? (a).pixel == (b).pixel : (a).pixmap == (b).pixmap)
|
|
|
|
|
|
|
|
|
|
#define EqualPixUnion(as, a, bs, b) \
|
|
|
|
|
((as) == (bs) && (SamePixUnion (a, b, as)))
|
|
|
|
|
|
|
|
|
|
#define OnScreenDrawable(type) \
|
2010-10-11 10:49:56 -04:00
|
|
|
(type == DRAWABLE_WINDOW)
|
2003-11-14 15:54:54 +00:00
|
|
|
|
|
|
|
|
#define WindowDrawable(type) \
|
|
|
|
|
((type == DRAWABLE_WINDOW) || (type == UNDRAWABLE_WINDOW))
|
|
|
|
|
|
2014-03-10 18:31:33 -04:00
|
|
|
extern _X_EXPORT PixmapPtr GetScratchPixmapHeader(ScreenPtr pScreen,
|
|
|
|
|
int width,
|
|
|
|
|
int height,
|
|
|
|
|
int depth,
|
|
|
|
|
int bitsPerPixel,
|
|
|
|
|
int devKind,
|
|
|
|
|
void *pPixData);
|
2003-11-14 15:54:54 +00:00
|
|
|
|
Rework symbol visibility for easier maintenance
Save in a few special cases, _X_EXPORT should not be used in C source
files. Instead, it should be used in headers, and the proper C source
include that header. Some special cases are symbols that need to be
shared between modules, but not expected to be used by external drivers,
and symbols that are accessible via LoaderSymbol/dlopen.
This patch also adds conditionally some new sdk header files, depending
on extensions enabled. These files were added to match pattern for
other extensions/modules, that is, have the headers "deciding" symbol
visibility in the sdk. These headers are:
o Xext/panoramiXsrv.h, Xext/panoramiX.h
o fbpict.h (unconditionally)
o vidmodeproc.h
o mioverlay.h (unconditionally, used only by xaa)
o xfixes.h (unconditionally, symbols required by dri2)
LoaderSymbol and similar functions now don't have different prototypes,
in loaderProcs.h and xf86Module.h, so that both headers can be included,
without the need of defining IN_LOADER.
xf86NewInputDevice() device prototype readded to xf86Xinput.h, but
not exported (and with a comment about it).
2008-12-03 05:43:34 -02:00
|
|
|
extern _X_EXPORT void FreeScratchPixmapHeader(PixmapPtr /*pPixmap */ );
|
2003-11-14 15:54:54 +00:00
|
|
|
|
2022-12-21 22:14:01 -08:00
|
|
|
extern _X_EXPORT Bool PixmapScreenInit(ScreenPtr /*pScreen */ );
|
2003-11-14 15:54:54 +00:00
|
|
|
|
Rework symbol visibility for easier maintenance
Save in a few special cases, _X_EXPORT should not be used in C source
files. Instead, it should be used in headers, and the proper C source
include that header. Some special cases are symbols that need to be
shared between modules, but not expected to be used by external drivers,
and symbols that are accessible via LoaderSymbol/dlopen.
This patch also adds conditionally some new sdk header files, depending
on extensions enabled. These files were added to match pattern for
other extensions/modules, that is, have the headers "deciding" symbol
visibility in the sdk. These headers are:
o Xext/panoramiXsrv.h, Xext/panoramiX.h
o fbpict.h (unconditionally)
o vidmodeproc.h
o mioverlay.h (unconditionally, used only by xaa)
o xfixes.h (unconditionally, symbols required by dri2)
LoaderSymbol and similar functions now don't have different prototypes,
in loaderProcs.h and xf86Module.h, so that both headers can be included,
without the need of defining IN_LOADER.
xf86NewInputDevice() device prototype readded to xf86Xinput.h, but
not exported (and with a comment about it).
2008-12-03 05:43:34 -02:00
|
|
|
extern _X_EXPORT PixmapPtr AllocatePixmap(ScreenPtr /*pScreen */ ,
|
2003-11-25 19:29:01 +00:00
|
|
|
int /*pixDataSize */ );
|
2003-11-14 15:54:54 +00:00
|
|
|
|
2010-04-26 17:22:21 -07:00
|
|
|
extern _X_EXPORT void FreePixmap(PixmapPtr /*pPixmap */ );
|
|
|
|
|
|
2012-06-20 12:37:12 +01:00
|
|
|
extern _X_EXPORT PixmapPtr
|
2020-07-06 07:00:50 +10:00
|
|
|
PixmapShareToSecondary(PixmapPtr pixmap, ScreenPtr secondary);
|
2012-06-20 12:37:12 +01:00
|
|
|
|
2016-05-06 10:46:14 +10:00
|
|
|
extern _X_EXPORT void
|
2020-07-06 07:00:50 +10:00
|
|
|
PixmapUnshareSecondaryPixmap(PixmapPtr secondary_pixmap);
|
2016-05-06 10:46:14 +10:00
|
|
|
|
2015-06-30 14:54:42 +10:00
|
|
|
#define HAS_DIRTYTRACKING_ROTATION 1
|
2017-04-14 19:08:41 +09:00
|
|
|
#define HAS_DIRTYTRACKING_DRAWABLE_SRC 1
|
2012-06-14 15:24:46 +01:00
|
|
|
extern _X_EXPORT Bool
|
2017-04-14 19:08:41 +09:00
|
|
|
PixmapStartDirtyTracking(DrawablePtr src,
|
2012-06-14 15:24:46 +01:00
|
|
|
PixmapPtr slave_dst,
|
2015-06-30 14:54:42 +10:00
|
|
|
int x, int y, int dst_x, int dst_y,
|
|
|
|
|
Rotation rotation);
|
2013-07-30 13:50:48 +10:00
|
|
|
|
2012-06-14 15:24:46 +01:00
|
|
|
extern _X_EXPORT Bool
|
2017-04-14 19:08:41 +09:00
|
|
|
PixmapStopDirtyTracking(DrawablePtr src, PixmapPtr slave_dst);
|
2012-06-14 15:24:46 +01:00
|
|
|
|
|
|
|
|
/* helper function, drivers can do this themselves if they can do it more
|
2020-07-05 13:07:33 -07:00
|
|
|
efficiently */
|
2012-06-14 15:24:46 +01:00
|
|
|
extern _X_EXPORT Bool
|
2015-06-30 14:54:42 +10:00
|
|
|
PixmapSyncDirtyHelper(PixmapDirtyUpdatePtr dirty);
|
2012-06-14 15:24:46 +01:00
|
|
|
|
2022-12-03 18:35:23 -08:00
|
|
|
extern _X_EXPORT void
|
|
|
|
|
PixmapDirtyCopyArea(PixmapPtr dst, DrawablePtr src,
|
|
|
|
|
int x, int y, int dst_x, int dst_y,
|
|
|
|
|
RegionPtr dirty_region);
|
|
|
|
|
|
2003-11-14 15:54:54 +00:00
|
|
|
#endif /* PIXMAP_H */
|