gtk/gdk/gdkhdrmetadataprivate.h
Matthias Clasen 4b766c5720 Add GdkHdrMetadata
This is just a data holder struct. It collects HDR metadata
according to SMPTE ST 20086 and CEA-861.3.
2024-08-26 12:29:08 -04:00

19 lines
252 B
C

#pragma once
#include <glib.h>
#include "gdkhdrmetadata.h"
struct _GdkHdrMetadata
{
gatomicrefcount ref_count;
float rx, ry;
float gx, gy;
float bx, by;
float wx, wy;
float min_lum;
float max_lum;
float max_cll;
float max_fall;
};