blob: ff77ba05cb6f52e575c0779aba6fb03002f6a072 (
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
|
/* See LICENSE file for copyright and license details. */
#define IN_LIBGAMMA_QUARTZ_CG
#include "common.h"
/**
* Initialise an allocated partition state
*
* @param this The partition state to initialise
* @param site The site state for the site that the partition belongs to
* @param partition The the index of the partition within the site
* @return Zero on success, otherwise (negative) the value of an
* error identifier provided by this library
*/
int
libgamma_quartz_cg_partition_initialise(struct libgamma_partition_state *restrict this,
struct libgamma_site_state *restrict site, size_t partition)
{
CGDirectDisplayID *crtcs, *crtcs_old;
uint32_t cap = 4, n;
(void) site;
this->data = NULL;
if (partition)
return LIBGAMMA_NO_SUCH_PARTITION;
/* Allocate array of CRTC ID:s */
crtcs = malloc((size_t)cap * sizeof(CGDirectDisplayID));
if (!crtcs)
return LIBGAMMA_ERRNO_SET;
/* It is not possible to ask CoreGraphics how many CRTC:s are
* available. We have to ask it to give us a ID:s of a number
* of CRTC:s and ask for more if we got as many as we asked for. */
for (;;) {
/* Ask for CRTC ID:s */
if (CGGetOnlineDisplayList(cap, crtcs, &n) != kCGErrorSuccess) {
free(crtcs);
return LIBGAMMA_LIST_CRTCS_FAILED;
}
/* If we did not get as many as we asked for then we have all */
if (n < cap)
break;
/* Increase the number CRTC ID:s to ask for */
if (cap > UINT32_MAX / 2) { /* We could also test ~0, but it is still too many */
free(crtcs);
return LIBGAMMA_IMPOSSIBLE_AMOUNT;
}
cap <<= 1;
/* Grow the array of CRTC ID:s so that it can fit all we are asking for */
if ((size_t)cap > SIZE_MAX / sizeof(CGDirectDisplayID)) {
errno = ENOMEM;
return LIBGAMMA_ERRNO_SET;
}
crtcs = realloc(crtcs_old = crtcs, (size_t)cap * sizeof(CGDirectDisplayID));
if (!crtcs) {
free(crtcs_old);
return LIBGAMMA_ERRNO_SET;
}
}
/* Store CRTC ID:s and CRTC count */
this->data = crtcs;
this->crtcs_available = (size_t)n;
return 0;
}
|