blob: 2b89ec9784c609ab4ea035992bdd516a7dafd441 (
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(struct libgamma_crtc_information *restrict this)
{
free(this->edid);
free(this->connector_name);
}
|