mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-05-09 04:58:06 +02:00
Missing header changes.
This commit is contained in:
parent
c46c644e30
commit
ccaf6779fe
1 changed files with 8 additions and 0 deletions
|
|
@ -83,6 +83,11 @@ typedef enum {
|
||||||
PosRelative
|
PosRelative
|
||||||
} PositionType;
|
} PositionType;
|
||||||
|
|
||||||
|
typedef struct _DMXIgnore {
|
||||||
|
struct _DMXIgnore *next;
|
||||||
|
unsigned long sequence;
|
||||||
|
} DMXIgnore;
|
||||||
|
|
||||||
/** Provide the typedef globally, but keep the contents opaque outside
|
/** Provide the typedef globally, but keep the contents opaque outside
|
||||||
* of the input routines. \see dmxinput.h */
|
* of the input routines. \see dmxinput.h */
|
||||||
typedef struct _DMXInputInfo DMXInputInfo;
|
typedef struct _DMXInputInfo DMXInputInfo;
|
||||||
|
|
@ -195,6 +200,9 @@ typedef struct _DMXScreenInfo {
|
||||||
DMXStatInfo *stat; /**< Statistics about XSync */
|
DMXStatInfo *stat; /**< Statistics about XSync */
|
||||||
Bool needsSync; /**< True if an XSync is pending */
|
Bool needsSync; /**< True if an XSync is pending */
|
||||||
|
|
||||||
|
DMXIgnore *ignoreHead;
|
||||||
|
DMXIgnore **ignoreTail;
|
||||||
|
|
||||||
#ifdef GLXEXT
|
#ifdef GLXEXT
|
||||||
/** Visual information for glxProxy */
|
/** Visual information for glxProxy */
|
||||||
int numGlxVisuals;
|
int numGlxVisuals;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue