aboutsummaryrefslogtreecommitdiffstats
path: root/libgamma_quartz_cg_crtc_get_gamma_rampsf.c
blob: 3f0343741cd14fcdfd95fd4b8fccb168145808fb (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
/* See LICENSE file for copyright and license details. */
#define IN_LIBGAMMA_QUARTZ_CG
#include "common.h"


/**
 * Get the current gamma ramps for a CRTC, `float` version
 * 
 * @param   this   The CRTC state
 * @param   ramps  The gamma ramps to fill with the current values
 * @return         Zero on success, otherwise (negative) the value of an
 *                 error identifier provided by this library
 */
int
libgamma_quartz_cg_crtc_get_gamma_rampsf(struct libgamma_crtc_state *restrict this, struct libgamma_gamma_rampsf *restrict ramps)
{
	CGDirectDisplayID *restrict crtcs = this->partition->data;
	CGDirectDisplayID crtc_id = crtcs[this->crtc];
	uint32_t gamma_size_out;
	CGError r;
#ifdef DEBUG
	/* Gamma ramps sizes are identical but not fixed */
	if (ramps->red_size != ramps->green_size || ramps->red_size != ramps->blue_size)
		return LIBGAMMA_MIXED_GAMMA_RAMP_SIZE;
#endif
	/* Read current gamma ramps */
	r = CGGetDisplayTransferByTable(crtc_id, (uint32_t)ramps->red_size, ramps->red, ramps->green, ramps->blue, &gamma_size_out);
	if (r != kCGErrorSuccess)
		return LIBGAMMA_GAMMA_RAMP_READ_FAILED;
	/* I hope that it will not actually ever change,
	   but it does return the the gamma ramp size despite
	   that it can be queried without querying for more */
	if (gamma_size_out != ramps->red_size)
		return LIBGAMMA_GAMMA_RAMP_SIZE_CHANGED;
	return 0;
}