aboutsummaryrefslogtreecommitdiffstats
path: root/libgamma_linux_drm_partition_destroy.c
blob: 8b1e08c7852cc6d77999c6aad624928d0c3c48a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* See LICENSE file for copyright and license details. */
#define IN_LIBGAMMA_LINUX_DRM
#include "common.h"


/**
 * Release all resources held by a partition state
 * 
 * @param  this  The partition state
 */
void
libgamma_linux_drm_partition_destroy(libgamma_partition_state_t *restrict this)
{
	libgamma_drm_card_data_t *restrict data = this->data;
	libgamma_linux_drm_internal_release_connectors_and_encoders(data);
	if (data->res)
		drmModeFreeResources(data->res);
	if (data->fd >= 0)
		close(data->fd);
	free(data);
}