mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-26 21:51:08 +00:00
40102a2b61
This is an immutable struct containing information about supported dma-buf formats and their properties.
14 lines
301 B
C
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);
|