aboutsummaryrefslogtreecommitdiffstats
path: root/libcoopgamma.h.0
blob: 73a0b8a2320689006ef366f40b75c8f09c02e8bf (plain) (blame)
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
.TH LIBCOOPGAMMA.H 0 LIBCOOPGAMMA
.SH "NAME"
libcoopgamma.h - Cooperative gamma library header
.SH "SYNOPSIS"
.nf
#include <libcoopgamma.h>
.fi
.SH "DESCRIPTION"
The
.B <libcoopgamma.h>
header includes the
.BR <limits.h> ,
.BR <stddef.h> ,
and
.BR <stdint.h>
headers.
.P
The
.B <libcoopgamma.h>
header defines the macros which expands to integer
constant expressions with distinct values:
.TP
.BR LIBCOOPGAMMA_SUCCESS " = 0"
Unmarshal was successful.
.TP
.BR LIBCOOPGAMMA_INCOMPATIBLE_DOWNGRADE " > 0"
Unmarshal failed. The marshalled data was created
with a older version of libcoopgamma that does not
marshall the data in a compatible way.
.TP
.BR LIBCOOPGAMMA_INCOMPATIBLE_UPGRADE " > 0"
Unmarshal failed. The marshalled data was created with
a newer version libcoopgamma that does not marshall
the data in a compatible way.
.TP
.BR LIBCOOPGAMMA_ERRNO_SET " < 0 (-1)"
Unmarshal failed because of an error,
.I errno
has been set appropriately.
.P
The
.B <libcoopgamma.h>
header defines
.I "enum libcoopgamma_support"
with the alias
.I libcoopgamma_support_t
and the following distinct values:
.TP
.BR LIBCOOPGAMMA_NO " = 0"
Gamma adjustments are not supported.
.TP
.BR LIBCOOPGAMMA_MAYBE " = 1"
Don't know whether gamma adjustments are supported.
.TP
.BR LIBCOOPGAMMA_YES " = 2"
Gamma adjustments are supported.
.P
The
.B <libcoopgamma.h>
header defines
.I "enum libcoopgamma_depth"
with the alias
.I libcoopgamma_depth_t
and the following distinct values:
.TP
.BR LIBCOOPGAMMA_UINT8 " = 8"
Gamma ramps with
.I uint8_t
as the stop-type are used
.RI ( libcoopgamma_ramps8_t ).
.TP
.BR LIBCOOPGAMMA_UINT16 " = 16"
Gamma ramps with
.I uint16_t
as the stop-type are used
.RI ( libcoopgamma_ramps16_t ).
.TP
.BR LIBCOOPGAMMA_UINT32 " = 32"
Gamma ramps with
.I uint32_t
as the stop-type are used
.RI ( libcoopgamma_ramps32_t ).
.TP
.BR LIBCOOPGAMMA_UINT64 " = 64"
Gamma ramps with
.I uint64_t
as the stop-type are used
.RI ( libcoopgamma_ramps64_t ).
.TP
.BR LIBCOOPGAMMA_FLOAT " < 0"
Gamma ramps with
.I float
as the stop-type are used
.RI ( libcoopgamma_rampsf_t ).
.TP
.BR LIBCOOPGAMMA_DOUBLE " < 0"
Gamma ramps with
.I double
as the stop-type are used
.RI ( libcoopgamma_rampsd_t ).
.P
The
.B <libcoopgamma.h>
header defines
.I "enum libcoopgamma_lifespan"
with the alias
.I libcoopgamma_lifespan_t
and the following distinct values:
.TP
.BR LIBCOOPGAMMA_REMOVE " = 0"
Remove the filter now.
.TP
.BR LIBCOOPGAMMA_UNTIL_DEATH " > 0"
Remove the filter when disconnecting from the coopgamma
server, or even explicitly removed, whichever comes first.
.TP
.BR LIBCOOPGAMMA_UNTIL_REMOVAL " > 0"
Only remove the filter when it is explicitly requested.
.P
The
.B <libcoopgamma.h>
header defines
.I "enum libcoopgamma_colourspace"
with the alias
.I libcoopgamma_colourspace_t
and the following distinct values:
.TP
.BR LIBCOOPGAMMA_UNKNOWN " = 0"
The monitor's colourspace is unknown.
.TP
.BR LIBCOOPGAMMA_SRGB " > 0"
The monitor uses sRGB as its colourspace.
.TP
.BR LIBCOOPGAMMA_RGB " > 0"
The monitor uses an RGB colourspace other than sRGB.
.TP
.BR LIBCOOPGAMMA_NON_RGB " > 0"
The monitor uses a non-RGB multicolour colourspace.
.TP
.BR LIBCOOPGAMMA_GREY " > 0"
The monitor uses a singlecolour scale colourspace,
possibility greyscale, or is monochrome.
.P
The
.B <libcoopgamma.h>
header defines
.I "struct libcoopgamma_ramps8"
.RI ( libcoopgamma_ramps8_t ),
.I "struct libcoopgamma_ramps16"
.RI ( libcoopgamma_ramps16_t ),
.I "struct libcoopgamma_ramps32"
.RI ( libcoopgamma_ramps32_t ),
.I "struct libcoopgamma_ramps64"
.RI ( libcoopgamma_ramps64_t ),
.I "struct libcoopgamma_rampsf"
.RI ( libcoopgamma_rampsf_t ),
.I "struct libcoopgamma_rampsd"
.RI ( libcoopgamma_rampsd_t ),
with the following members,
where
.I type
is
.IR uint8_t ,
.IR uint16_t ,
.IR uint32_t ,
.IR uint64_t ,
.IR float ,
and
.I double
for the respective structures:
.TP
.B "size_t red_size"
 The number of stops in the red ramp.
.TP
.B "size_t green_size"
The number of stops in the green ramp.
.TP
.B "size_t blue_size"
The number of stops in the blue ramp.
.TP
.IB type " *red"
The red ramp.
.TP
.IB type " *green"
The green ramp.
.TP
.IB type " *blue"
The blue ramp.
.P
The
.B <libcoopgamma.h>
header defines
.I "union libcoopgamma_ramps"
with alias
.I libcoopgamma_ramps_t
and the follow members:
.TP
.B "libcoopgamma_ramps8_t u8"
.TP
.B "libcoopgamma_ramps16_t u16"
.TP
.B "libcoopgamma_ramps32_t u32"
.TP
.B "libcoopgamma_ramps64_t u64"
.TP
.B "libcoopgamma_rampsf_t f"
.TP
.B "libcoopgamma_rampsd_t d"
.P
The
.B <libcoopgamma.h>
header defines
.I "struct libcoopgamma_filter"
with alias
.I libcoopgamma_filter_t
and the follow members:
.TP
.B "int64_t priority"
The priority of the filter, higher priority is applied first.
The gamma correction should have priority 0.
.TP
.B "char *crtc"
The CRTC for which this filter shall be applied.
.TP
.B "char *class"
Identifier for the filter. The syntax must be
\(aq\fI${PACKAGE_NAME}\fP\fB::\fP\fI${COMMAND_NAME}\fP\fB::\fP\fI${RULE}\fP\(aq.
.TP
.B "enum libcoopgamma_lifespan lifespan"
When shall the filter be removed?
If this member's value is
.IR LIBCOOPGAMMA_REMOVE ,
only
.I .crtc
and
.I .class
need also be defined.
.TP
.B "enum libcoopgamma_depth depth"
The data type and bit-depth of the ramp stops.
.TP
.B "union libcoopgamma_ramps ramps"
The gamma ramp adjustments of the filter.
.P
The
.B <libcoopgamma.h>
header defines
.I "struct libcoopgamma_crtc_info"
with alias
.I libcoopgamma_crtc_info_t
and the follow members:
.TP
.B "int cooperative"
Is cooperative gamma server running?
.TP
.B "enum libcoopgamma_depth depth"
The data type and bit-depth of the ramp stops.
.TP
.B "enum libcoopgamma_support supported"
Is gamma adjustments supported on the CRTC?
If not,
.IR .depth ,
.IR .red_size ,
.IR .green_size ,
and
.I .blue_size
are undefined.
.TP
.B "size_t red_size"
 The number of stops in the red ramp.
.TP
.B "size_t green_size"
The number of stops in the green ramp.
.TP
.B "size_t blue_size"
The number of stops in the blue ramp.
.TP
.B "enum libcoopgamma_colourspace colourspace"
The monitor's colurspace.
.TP
.B "int have_gamut"
Is the gamut of the monitor known?
If, and only if, so,
.IR .red_x ,
.IR .red_y ,
.IR .green_x ,
.IR .green_y ,
.IR .blue_x ,
.IR .blue_y ,
.IR .white_x ,
and
.IR .white_y
are set. Unless the monitor uses an
RGB colourspace, this value should
be false, but there is no guarantee
of this, you have to check that the
colourspace is an RGB colourspace.
.TP
.B "unsigned red_x"
The x-value (CIE xyY) of the monitor's
red colour, multiplied by 1024.
.TP
.B "unsigned red_y"
The y-value (CIE xyY) of the monitor's
red colour, multiplied by 1024.
.TP
.B "unsigned green_x"
The x-value (CIE xyY) of the monitor's
green colour, multiplied by 1024.
.TP
.B "unsigned green_y"
The y-value (CIE xyY) of the monitor's
green colour, multiplied by 1024.
.TP
.B "unsigned blue_x"
The x-value (CIE xyY) of the monitor's
blue colour, multiplied by 1024.
.TP
.B "unsigned blue_y"
The y-value (CIE xyY) of the monitor's
blue colour, multiplied by 1024.
.TP
.B "unsigned white_x"
The x-value (CIE xyY) of the monitor's
default white point, multiplied by 1024.
.TP
.B "unsigned white_y"
The y-value (CIE xyY) of the monitor's
default white point, multiplied by 1024.
.P
The
.B <libcoopgamma.h>
header defines
.I "struct libcoopgamma_filter_query"
with alias
.I libcoopgamma_filter_query_t
and the follow members:
.TP
.B "int64_t high_priority"
Do no return filters with higher priority than this value.
.TP
.B "int64_t low_priority"
Do no return filters with lower priority than this value.
.TP
.B "char *crtc"
The CRTC for which the the current filters shall returned
.TP
.B "int coalesce"
Shall all selected filters be coalesced into one gamma ramp triplet?
.P
The
.B <libcoopgamma.h>
header defines
.I "struct libcoopgamma_queried_filter"
with alias
.I libcoopgamma_queried_filter_t
and the follow members:
.TP
.B "int64_t priority"
The filter's priority.
.TP
.B "char *class"
The filter's class.
.TP
.B "union libcoopgamma_ramps ramps"
The gamma ramp adjustments of the filter
.P
The
.B <libcoopgamma.h>
header defines
.I "struct libcoopgamma_filter_table"
with alias
.I libcoopgamma_filter_table_t
and the follow members:
.TP
.B "size_t red_size"
The number of stops in the red ramp.
.TP
.B "size_t green_size"
The number of stops in the green ramp.
.TP
.B "size_t blue_size"
The number of stops in the blue ramp.
.TP
.B "size_t filter_count"
The number of filters.
.TP
.B "struct libcoopgamma_queried_filter_t *filters"
The filters, should be ordered by priority
in descending order (applied first goes first,
applied last goes last), lest there is something                                                                 
wrong with the coopgamma server.

If filter coalition was requested, there will
be exactly one filter
.I "(.filter_count == 1)"
and
.I ".filters->class == NULL"
and
.I ".filters->priority"
is undefined.
.TP
.B "enum libcoopgamma_depth depth"
The data type and bit-depth of the ramp stops.
.P
The
.B <libcoopgamma.h>
header defines
.I "struct libcoopgamma_error"
with alias
.I libcoopgamma_error_t
and the follow members:
.TP
.B "uint64_t number"
Error code.

If
.I ".custom"
is false, 0 indicates success,
otherwise, 0 indicates that no
error code has been assigned.
.TP
.B "int custom"
Is this a custom error?
.TP
.B "int server_side"
Did the error occur on the server-side? 
.TP
.B "char *description"
Error message, can be, and usually is,
.I NULL
if
.I ".custom"
is false.
.P
The
.B <libcoopgamma.h>
header defines
.I "struct libcoopgamma_context"
with alias
.I libcoopgamma_context_t
and the follow members and a lot
if internal unlisted members:
.TP
.B "struct libcoopgamma_error error"
The error of the last failed function call
to function that documents that this member
will be set on failure.

This member is undefined after successful
function call.
.TP
.B "int fd"
File descriptor for the socket that connects
the client to the server.
.P
The
.B <libcoopgamma.h>
header defines
.I "struct libcoopgamma_async_context"
with alias
.I libcoopgamma_async_context_t.
This structure has only internal members.
.SH "SEE ALSO"
.BR libcoopgamma (7),
.BR libcoopgamma_ramps_initialise (3),
.BR libcoopgamma_filter_initialise (3),
.BR libcoopgamma_crtc_info_initialise (3),
.BR libcoopgamma_filter_query_initialise (3),
.BR libcoopgamma_queried_filter_initialise (3),
.BR libcoopgamma_filter_table_initialise (3),
.BR libcoopgamma_error_initialise (3),
.BR libcoopgamma_context_initialise (3),
.BR libcoopgamma_async_context_initialise (3),
.BR libcoopgamma_get_methods (3),
.BR libcoopgamma_get_method_and_site (3),
.BR libcoopgamma_get_pid_file (3),
.BR libcoopgamma_get_socket_file (3),
.BR libcoopgamma_connect (3)