-
Notifications
You must be signed in to change notification settings - Fork 6
/
render.proto
569 lines (509 loc) · 9.65 KB
/
render.proto
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
# This file is part of "xtrace"
# Copyright (C) 2005, 2009 Bernhard R. Link
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#/
# This file is based on the render.h and renderproto.h files
# from the Xorg server:
# Copyright © 2000 SuSE, Inc.
#
# 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, and that the name of SuSE not be used in advertising or
# publicity pertaining to distribution of the software without specific,
# written prior permission. SuSE makes no representations about the
# suitability of this software for any purpose. It is provided "as is"
# without express or implied warranty.
#
# SuSE DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL SuSE
# 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.
#
# Author: Keith Packard, SuSE, Inc.
#/
NEEDS "requests.proto"
EXTENSION "RENDER" Render
USE core
REQUESTS
QueryVersion RESPONDS
QueryPictFormats RESPONDS
QueryPictIndexValues RESPONDS
UNKNOWN
CreatePicture
ChangePicture
SetPictureClipRectangles
FreePicture
Composite
Scale
Trapezoids
Triangles
TriStrip
TriFan
UNKNOWN
UNKNOWN
UNKNOWN
CreateGlyphSet
ReferenceGlyphSet
FreeGlyphSet
AddGlyphs
UNKNOWN
FreeGlyphs
CompositeGlyphs8
CompositeGlyphs16
CompositeGlyphs32
FillRectangles
CreateCursor
SetPictureTransform
QueryFilters RESPONDS
SetPictureFilter
# 0.8
CreateAnimCursor
# 0.9
AddTraps /*32*/
END
EVENTS
END
ERRORS
BadPictFormat
BadPicture
BadPictOp
BadGlyphSet
BadGlyph
END
CONSTANTS picttype
0 Indexed
1 Direct
END
TYPE PictType ENUM8 picttype
CONSTANTS pictop
0 Minimum/Clear
1 Src
2 Dst
3 Over
4 OverReverse
5 In
6 InReverse
7 Out
8 OutReverse
9 Atop
10 AtopReverse
11 Xor
12 Add
13 Saturate/Maximum
0x10 DisjointMinimum
#0x10 DisjointClear
0x11 DisjointSrc
0x12 DisjointDst
0x13 DisjointOver
0x14 DisjointOverReverse
0x15 DisjointIn
0x16 DisjointInReverse
0x17 DisjointOut
0x18 DisjointOutReverse
0x19 DisjointAtop
0x1a DisjointAtopReverse
#0x1b DisjointXor
0x1b DisjointMaximum
0x20 ConjointMinimum
#0x20 ConjointClear
0x21 ConjointSrc
0x22 ConjointDst
0x23 ConjointOver
0x24 ConjointOverReverse
0x25 ConjointIn
0x26 ConjointInReverse
0x27 ConjointOut
0x28 ConjointOutReverse
0x29 ConjointAtop
0x2a ConjointAtopReverse
0x2b ConjointXor
#0x2b ConjointMaximum
END
TYPE PictOp ENUM8 pictop
CONSTANTS polyedge
0 Sharp
1 Smooth
END
TYPE PolyEdge ENUM8 polyedge
CONSTANTS polymode
0 Precise
1 Imprecise
END
TYPE PolyMode ENUM8 polymode
CONSTANTS subpixel
0 Unknown
1 HorizontalRGB
2 HorizontalBGR
3 VerticalRGB
4 VerticalBGR
5 None
END
TYPE SUBPIXEL ENUM8 subpixel
TYPE VisualID CARD32
TYPE PICTURE CARD32
TYPE PICTFORMAT CARD32
TYPE GLYPHSET CARD32
LIST PictFormInfo length 28
0 id PICTFORMAT
4 type PictType
5 depth CARD8
8 red CARD16
10 redMask CARD16
12 green CARD16
14 greenMask CARD16
16 blue CARD16
18 blueMask CARD16
20 alpha CARD16
22 alphaMask CARD16
24 colormap COLORMAP
END
LIST PictFormats variable min-length 28
GET 0
0 formats LISTofPictFormInfo
END
LIST PictVisual length 8
0 visual VisualID
4 format PICTFORMAT
END
LIST PictDepth variable min-length 8
0 depth CARD8
2 nPictVisuals COUNT16
8 visuals LISTofPictVisual
END
LIST PictScreen variable min-length 8
0 nDepth COUNT32
4 fallback PICTFORMAT
8 depths LISTofPictDepth
END
REQUEST QueryPictFormats ALIASES Empty
RESPONSE QueryPictFormats
8 numFormats PUSH32
12 numScreens COUNT32
32 formats LISTofPictFormats
12 numScreens COUNT32
LATER screens LISTofPictScreen
24 numSubpixel COUNT32
LATER subpixels LISTofCARD32 constants subpixel
END
LIST IndexValue length 12
0 pixel CARD32
4 red CARD16
6 green CARD16
8 blue CARD16
10 alpha CARD16
END
LIST POINTFIXED length 8
0 x FIXED
4 y FIXED
END
STRUCT LineFixed length 16
0 x1 FIXED
4 y1 FIXED
8 x2 FIXED
12 y2 FIXED
END
LIST TRIANGLE length 24
0 x1 FIXED
4 y1 FIXED
8 x2 FIXED
12 y2 FIXED
16 x3 FIXED
20 y3 FIXED
END
LIST TRAPEZOID length 40
0 top FIXED
4 bottom FIXED
8 left LineFixed
24 right LineFixed
END
#/*
# * requests and replies
# */
REQUEST QueryVersion
4 majorVersion UINT32
8 minorVersion UINT32
END
RESPONSE QueryVersion
8 majorVersion UINT32
12 minorVersion UINT32
END
REQUEST QueryPictIndexValues
4 format PICTFORMAT
END
RESPONSE QueryPictIndexValues
8 numIndexValues COUNT32
32 IndexValues LISTofIndexValue
END
VALUES RenderCP
1<<0 repeat BOOL
1<<1 alphaMap PICTURE constants none
1<<2 alpha-x-origin INT16
1<<3 alpha-y-origin INT16
1<<4 clip-x-origin INT16
1<<5 clip-y-origin INT16
1<<6 clip-mask PIXMAP constants none
1<<7 graphics-exposure BOOL
1<<8 subwindow-mode SubwindowMode
1<<9 poly-edge PolyEdge
1<<10 poly-mode PolyMode
1<<11 dither ATOM constants none
1<<12 component-alpha BOOL
END
REQUEST CreatePicture
4 pid PICTURE
8 drawable DRAWABLE
12 format PICTFORMAT
16 mask STORE32
20 values LISTofRenderCP
END
REQUEST ChangePicture
4 picture PICTURE
8 mask STORE32
12 values LISTofRenderCP
END
REQUEST SetPictureClipRectangles
4 picture PICTURE
8 xOrigin INT16
10 yOrigin INT16
12 rectangles LISTofRECTANGLE
END
REQUEST FreePicture
4 picture PICTURE
END
REQUEST Composite
4 op PictOp
8 src PICTURE
12 mask PICTURE constants none
16 dst PICTURE
20 xSrc INT16
22 ySrc INT16
24 xMask INT16
26 yMask INT16
28 xDst INT16
30 yDst INT16
32 width UINT16
34 height UINT16
END
REQUEST Scale
4 src PICTURE
8 dst PICTURE
12 colorScale UINT32
16 alphaScale UINT32
20 xSrc INT16
22 ySrc INT16
24 xDst INT16
26 yDst INT16
28 width UINT16
30 height UINT16
END
REQUEST Trapezoids
4 op PictOp
8 src PICTURE
20 xSrc INT16
22 ySrc INT16
12 dst PICTURE
16 maskFormat PICTFORMAT constants none
24 trapezoids LISTofTRAPEZOID
END
REQUEST Triangles
4 op PictOp
8 src PICTURE
20 xSrc INT16
22 ySrc INT16
12 dst PICTURE
16 maskFormat PICTFORMAT constants none
20 triangles LISTofTRIANGLE
END
REQUEST TriStrip
4 op PictOp
8 src PICTURE
20 xSrc INT16
22 ySrc INT16
12 dst PICTURE
16 maskFormat PICTFORMAT constants none
20 points LISTofPOINTFIXED
END
REQUEST TriFan
4 op PictOp
8 src PICTURE
20 xSrc INT16
22 ySrc INT16
12 dst PICTURE
16 maskFormat PICTFORMAT constants none
20 points LISTofPOINTFIXED
END
REQUEST CreateGlyphSet
4 gsid GLYPHSET
8 format PICTFORMAT
END
REQUEST ReferenceGlyphSet
4 gsid GLYPHSET
8 existing GLYPHSET
END
REQUEST FreeGlyphSet
4 glyphset GLYPHSET
END
LIST GLYPHINFO length 12
0 width UINT16
2 height UINT16
4 x INT16
6 y INT16
8 xOff INT16
10 yOff INT16
END
REQUEST AddGlyphs
4 glyphset GLYPHSET
8 nglyphs COUNT32
12 glyphids LISTofCARD32
8 nglyphs COUNT32
LATER glyphs LISTofGLYPHINFO
RESET_COUNTER
LATER data LISTofCARD8
END
REQUEST FreeGlyphs
4 glyphset GLYPHSET
8 glyphs LISTofCARD32
END
LIST GlyphElt8 variable min-length 8
4 deltax INT16
6 deltay INT16
IF 0 CARD8 255
8 glyphset GLYPHSET
NEXT 12
ELSE
0 len COUNT8
8 glyphs LISTofCARD8
ROUND
END
LIST GlyphElt16 variable min-length 8
4 deltax INT16
6 deltay INT16
IF 0 CARD8 255
8 glyphset GLYPHSET
NEXT 12
ELSE
0 len COUNT8
8 glyphs LISTofCARD16
ROUND
END
LIST GlyphElt32 variable min-length 8
4 deltax INT16
6 deltay INT16
IF 0 CARD8 255
8 glyphset GLYPHSET
NEXT 12
ELSE
0 len COUNT8
8 glyphs LISTofCARD32
END
REQUEST CompositeGlyphs8
4 op PictOp
8 src PICTURE
12 dst PICTURE
16 maskFormat PICTFORMAT constants none
20 glyphset GLYPHSET
24 xSrc INT16
26 ySrc INT16
28 glyphcmds LISTofGlyphElt8
END
REQUEST CompositeGlyphs16
4 op PictOp
8 src PICTURE
12 dst PICTURE
16 maskFormat PICTFORMAT constants none
20 glyphset GLYPHSET
24 xSrc INT16
26 ySrc INT16
28 glyphcmds LISTofGlyphElt16
END
REQUEST CompositeGlyphs32
4 op PictOp
8 src PICTURE
12 dst PICTURE
16 maskFormat PICTFORMAT constants none
20 glyphset GLYPHSET
24 xSrc INT16
26 ySrc INT16
28 glyphcmds LISTofGlyphElt32
END
# 0.1 and higher
REQUEST FillRectangles
4 op PictOp
8 dst PICTURE
12 red CARD16
14 green CARD16
16 blue CARD16
18 alpha CARD16
20 rects LISTofRECTANGLE
END
# 0.5 and higher
REQUEST CreateCursor
4 cid CURSOR
8 src PICTURE
12 x UINT16
14 y UINT16
END
# 0.6 and higher
REQUEST SetPictureTransform
4 picture PICTURE
8 transform LISTofFIXED
END
REQUEST QueryFilters
4 drawable DRAWABLE
END
RESPONSE QueryFilters
8 numAliases COUNT32
32 Aliases LISTofCARD16
ROUND
12 numFilters COUNT32
LATER Filters LISTofSTRING8
END
REQUEST SetPictureFilter
4 picture PICTURE
8 nbytes COUNT16
12 name STRING8
ROUND
RESET_COUNTER
LATER values LISTofFIXED
END
# 0.8 and higher
LIST AnimCursorElt length 8
0 cursor CURSOR
4 delay CARD32
END
REQUEST CreateAnimCursor
4 cid CURSOR
8 cursors LISTofAnimCursorElt
END
# 0.9 and higher
STRUCT SPANFIX length 12
0 l FIXED
4 r FIXED
8 y FIXED
END
LIST TRAP length 24
0 top SPANFIX
12 bottom SPANFIX
END
REQUEST AddTraps
4 picture PICTURE
8 x-ofs INT16
10 y-ofs INT16
12 traps LISTofTRAP
END
EOF