mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 02:40:11 +00:00
4b766c5720
This is just a data holder struct. It collects HDR metadata according to SMPTE ST 20086 and CEA-861.3.
19 lines
252 B
C
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;
|
|
};
|