22 lines
806 B
C
22 lines
806 B
C
|
#pragma once
|
||
|
|
||
|
#include "gdkdmabuftexture.h"
|
||
|
|
||
|
#include "gdkdmabuftexturebuilder.h"
|
||
|
#include "gdkdmabufprivate.h"
|
||
|
|
||
|
G_BEGIN_DECLS
|
||
|
|
||
|
const GdkDmabuf * gdk_dmabuf_texture_builder_get_dmabuf (GdkDmabufTextureBuilder *builder);
|
||
|
|
||
|
GdkTexture * gdk_dmabuf_texture_new_from_builder (GdkDmabufTextureBuilder *builder,
|
||
|
GDestroyNotify destroy,
|
||
|
gpointer data,
|
||
|
GError **error);
|
||
|
|
||
|
GdkDisplay * gdk_dmabuf_texture_get_display (GdkDmabufTexture *self);
|
||
|
const GdkDmabuf * gdk_dmabuf_texture_get_dmabuf (GdkDmabufTexture *self);
|
||
|
|
||
|
G_END_DECLS
|
||
|
|