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


/**
 * Set the gamma ramps for a CRTC, 16-bit gamma-depth version
 * 
 * @param   this   The CRTC state
 * @param   ramps  The gamma ramps to apply
 * @return         Zero on success, otherwise (negative) the value of an
 *                 error identifier provided by this library
 */
int
libgamma_linux_drm_crtc_set_gamma_ramps16(struct libgamma_crtc_state *restrict this,
                                          const struct libgamma_gamma_ramps16 *restrict ramps)
{
	struct libgamma_drm_card_data *restrict card = this->partition->data;
	int r;
#ifdef DEBUG
	/* Gamma ramp 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

	/* Apply gamma ramps */
	r = drmModeCrtcSetGamma(card->fd, (uint32_t)(size_t)this->data,
	                        (uint32_t)ramps->red_size, ramps->red, ramps->green, ramps->blue);
	/* Check for errors */
	if (r) {
		switch (errno) {
		case EACCES:
		case EAGAIN:
		case EIO:
			/* Permission denied errors must be ignored, because we do not
			 * have permission to do this while a display server is active.
			 * We are also checking for some other error codes just in case. */
		case EBUSY:
		case EINPROGRESS:
			/* It is hard to find documentation for DRM (in fact all of this is
			 * just based on the functions names and some testing,) perhaps we
			 * could get this if we are updating to fast. */
			break;
		case EBADF:
		case ENODEV:
		case ENXIO:
			/* TODO: I have not actually tested removing my graphics card or,
			 *       monitor but I imagine either of these is what would happen. */
			return LIBGAMMA_GRAPHICS_CARD_REMOVED;

		default:
			return LIBGAMMA_ERRNO_SET;
		}
	}
	return 0;
}