blob: 078945194cc5d432dbb1b13b9b861546491a5ba2 (
plain) (
tree)
|
|
/* 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);
}
|