blob: 078945194cc5d432dbb1b13b9b861546491a5ba2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
/**
* Release all resources in an information data structure for a CRTC
*
* @param this The CRTC information
*/
void
libgamma_crtc_information_destroy(libgamma_crtc_information_t *restrict this)
{
free(this->edid);
free(this->connector_name);
}
|