File tree 10 files changed +80
-7
lines changed
10 files changed +80
-7
lines changed Original file line number Diff line number Diff line change @@ -223,6 +223,9 @@ XORGRELSTRING = XorgManVersionString
223
223
#ifndef BuildRender
224
224
#define BuildRender YES
225
225
#endif
226
+ #ifndef BuildPresent
227
+ #define BuildPresent YES
228
+ #endif
226
229
227
230
#ifndef BuildRandR
228
231
#define BuildRandR YES
Original file line number Diff line number Diff line change @@ -449,6 +449,11 @@ IPLAN2P8_DEFS = -DUSE_IPLAN2P8
449
449
# define BuildRender YES
450
450
#endif
451
451
452
+ /* Build Present extension */
453
+ #ifndef BuildPresent
454
+ # define BuildPresent YES
455
+ #endif
456
+
452
457
#if 0
453
458
#ifndef JoystickSupport
454
459
# define JoystickSupport NO
Original file line number Diff line number Diff line change @@ -20,6 +20,9 @@ RANDRHEADERS = randr.h randrproto.h
20
20
#if BuildRender
21
21
RENDERHEADERS = render.h renderproto.h
22
22
#endif
23
+ #if BuildPresent
24
+ PRESENTHEADERS = presentproto.h presenttokens.h
25
+ #endif
23
26
#if BuildXfixes
24
27
XFIXESHEADERS = xfixeswire.h xfixesproto.h
25
28
#endif
@@ -43,6 +46,7 @@ EXTRAHEADERS = \
43
46
$(XVMCHEADERS) \
44
47
$(RANDRHEADERS) \
45
48
$(RENDERHEADERS) \
49
+ $(PRESENTHEADERS) \
46
50
$(XFIXESHEADERS) \
47
51
$(COMPOSITEHEADERS) \
48
52
$(DAMAGEHEADERS) \
Original file line number Diff line number Diff line change 23
23
#ifndef _PRESENT_PROTO_H_
24
24
#define _PRESENT_PROTO_H_
25
25
26
- #include <X11/extensions/presenttokens.h>
26
+ #include <nx- X11/extensions/presenttokens.h>
27
27
28
28
#define Window CARD32
29
29
#define Pixmap CARD32
Original file line number Diff line number Diff line change @@ -86,6 +86,10 @@ INSTPGMFLAGS =
86
86
#if BuildDBE
87
87
DBEDIR = dbe
88
88
#endif
89
+ #if BuildPresent
90
+ PRESENTEXT = present/LibraryTargetName(present)
91
+ PRESENTDIR = present
92
+ #endif
89
93
#if BuildRECORD
90
94
RECORDEXT = record/LibraryTargetName(record)
91
95
#endif
@@ -105,6 +109,10 @@ INSTPGMFLAGS =
105
109
RENDERDIR = render
106
110
RENDERLIB = $(RENDERDIR)/librender.a
107
111
#endif
112
+ #if BuildPresent
113
+ PRESENTDIR = present
114
+ PRESENTEXT = present/LibraryTargetName(present)
115
+ #endif
108
116
#if BuildRandR
109
117
RANDRDIR = randr
110
118
RANDRLIB = $(RANDRDIR)/librandr.a
@@ -124,11 +132,11 @@ INSTPGMFLAGS =
124
132
CW = miext/cw/LibraryTargetName(cw)
125
133
#endif
126
134
EXTENSIONS = $(COMPOSITELIB) $(DAMAGELIB) $(DAMAGE) $(FIXESLIB) $(CW) \
127
- $(OTHEREXTS) $(GLXEXT) $(RANDRLIB) $(RENDERLIB)
135
+ $(OTHEREXTS) $(GLXEXT) $(PRESENTEXT) $( RANDRLIB) $(RENDERLIB)
128
136
OTHEREXTS = Xext/LibraryTargetName(ext) $(XKBEXT) $(XINPUTEXT) \
129
137
$(DBEEXT) $(RECORDEXT) $(SITEEXTS)
130
138
EXTDIRS = Xext $(XKBDIR) $(XIDIR) $(GLXDIR) \
131
- $(DBEDIR) $(RECORDDIR) $(SITEEXTDIRS) \
139
+ $(DBEDIR) $(PRESENTDIR) $( RECORDDIR) $(SITEEXTDIRS) \
132
140
$(RANDRDIR) $(RENDERDIR) $(XPCONFIGDIR) \
133
141
$(FIXESDIR) $(DAMAGEDIR) $(CWDIR) $(COMPOSITEDIR)
134
142
OS = os/LibraryTargetName(os)
Original file line number Diff line number Diff line change 75
75
#define SERVER_PANORAMIX_MAJOR_VERSION 1
76
76
#define SERVER_PANORAMIX_MINOR_VERSION 1
77
77
78
- #ifndef NXAGENT_SERVER
79
78
/* Present */
80
79
#define SERVER_PRESENT_MAJOR_VERSION 1
81
80
#define SERVER_PRESENT_MINOR_VERSION 0
82
- #endif /* !defined(NXAGENT_SERVER) */
83
81
84
82
/* RandR */
85
83
#define SERVER_RANDR_MAJOR_VERSION 1
Original file line number Diff line number Diff line change @@ -238,6 +238,9 @@ extern void XFree86DRIExtensionInit(void);
238
238
#ifdef DPMSExtension
239
239
extern void DPMSExtensionInit (void );
240
240
#endif
241
+ #ifdef PRESENT
242
+ extern void present_extension_init (void );
243
+ #endif
241
244
#ifdef DPSEXT
242
245
extern void DPSExtensionInit (void );
243
246
#endif
@@ -292,6 +295,9 @@ static ExtensionToggle ExtensionToggleList[] =
292
295
#ifdef DPMSExtension
293
296
{ "DPMS" , & noDPMSExtension },
294
297
#endif
298
+ #ifdef PRESENT
299
+ { "Present" , & noPresentExtension },
300
+ #endif
295
301
#ifdef GLXEXT
296
302
{ "GLX" , & noGlxExtension },
297
303
#endif
Original file line number Diff line number Diff line change
1
+ NULL =
2
+
3
+ #include <Server.tmpl>
4
+
5
+ SRCS = \
6
+ present.c \
7
+ present_event.c \
8
+ present_fake.c \
9
+ present_fence.c \
10
+ present_notify.c \
11
+ present_request.c \
12
+ present_screen.c \
13
+ $(NULL)
14
+ OBJS = \
15
+ present.o \
16
+ present_event.o \
17
+ present_fake.o \
18
+ present_fence.o \
19
+ present_notify.o \
20
+ present_request.o \
21
+ present_screen.o \
22
+ $(NULL)
23
+ INCLUDES = \
24
+ -I$(SERVERSRC)/include \
25
+ -I$(SERVERSRC)/randr \
26
+ -I$(SERVERSRC)/render \
27
+ -I$(XINCLUDESRC) \
28
+ -I$(EXTINCSRC) \
29
+ `pkg-config --cflags-only-I pixman-1` \
30
+ $(NULL)
31
+
32
+ LINTLIBS = \
33
+ ../dix/llib-ldix.ln \
34
+ ../os/llib-los.ln \
35
+ $(NULL)
36
+
37
+ RESENT_DEFINES = \
38
+ -DPRESENT_FUTURE_VERSION=0 \
39
+ $(NULL)
40
+
41
+ NormalLibraryObjectRule()
42
+
43
+ NormalLibraryTarget(present,$(OBJS))
44
+
45
+ LintLibraryTarget(present,$(SRCS))
46
+ NormalLintTarget($(SRCS))
47
+
48
+
49
+ DependTarget()
Original file line number Diff line number Diff line change 23
23
#ifndef _PRESENT_H_
24
24
#define _PRESENT_H_
25
25
26
- #include <X11/extensions/presentproto.h>
26
+ #include <nx- X11/extensions/presentproto.h>
27
27
#include "randrstr.h"
28
28
#include "presentext.h"
29
29
Original file line number Diff line number Diff line change 23
23
#ifndef _PRESENT_PRIV_H_
24
24
#define _PRESENT_PRIV_H_
25
25
26
- #include <X11/X.h>
26
+ #include <nx- X11/X.h>
27
27
#include "scrnintstr.h"
28
28
#include "misc.h"
29
29
#include "list.h"
You can’t perform that action at this time.
0 commit comments