diff options
Diffstat (limited to '')
-rw-r--r-- | libgamma_dummy_crtc_destroy.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/libgamma_dummy_crtc_destroy.c b/libgamma_dummy_crtc_destroy.c new file mode 100644 index 0000000..7464dd4 --- /dev/null +++ b/libgamma_dummy_crtc_destroy.c @@ -0,0 +1,22 @@ +/* See LICENSE file for copyright and license details. */ +#include "common.h" + + +/** + * Release all resources held by a CRTC state + * + * @param this The CRTC state + */ +void +libgamma_dummy_crtc_destroy(libgamma_crtc_state_t *restrict this) +{ + libgamma_dummy_crtc_t *data = this->data; + if (data) { + free(data->gamma_red); + data->gamma_red = NULL; + free(data->gamma_green); + data->gamma_green = NULL; + free(data->gamma_blue); + data->gamma_blue = NULL; + } +} |