gtk/gdk/gdkdmabufformatsprivate.h
Matthias Clasen 40102a2b61 Add GdkDmabufFormats
This is an immutable struct containing information
about supported dma-buf formats and their properties.
2023-10-11 14:53:06 -04:00

14 lines
301 B
C

#pragma once
#include "gdkdmabufformats.h"
typedef struct _GdkDmabufFormat GdkDmabufFormat;
struct _GdkDmabufFormat
{
guint32 fourcc;
guint64 modifier;
};
GdkDmabufFormats *gdk_dmabuf_formats_new (GdkDmabufFormat *formats,
gsize n_formats);